diff --git a/ChangeLog.md b/ChangeLog.md index 64c48979ad09..e1a1c33d774f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,8 @@ -## 2015.10.09 version 1.0 preview +* Azure Redis Cache + * Set-AzureRedisCache - Premium and vNet support for redis cache + * New-AzureRedisCache - Premium and vNet support for redis cache + +## 2015.10.09 version 1.0 preview * Azure Resource Manager Management Cmdlets * New-AzureRmResourceGroup - Removed the template deployment parameters from this cmdlet. Template deployment will now be handled only through the New-AzureRmResourceGroupDeployment diff --git a/setup/Setup/CustomAction.cs b/setup/Setup/CustomAction.cs index 4fb665f4daf5..916f0a70211e 100644 --- a/setup/Setup/CustomAction.cs +++ b/setup/Setup/CustomAction.cs @@ -78,6 +78,7 @@ private static void RunSTAThread(object sessionObject) powerShellShellLink.SetScreenBufferSize(120, 3000); powerShellShellLink.SetWindowSize(120, 50); } + powerShellShellLink.SetFont(); powerShellShellLink.Save(); session.Log("UpdatePSShortcut: success"); } diff --git a/setup/Setup/SetExecutionPolicy.ps1 b/setup/Setup/SetExecutionPolicy.ps1 new file mode 100644 index 000000000000..a704ba29b004 --- /dev/null +++ b/setup/Setup/SetExecutionPolicy.ps1 @@ -0,0 +1,24 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + + +try +{ + Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force -ErrorAction "SilentlyContinue" +} +catch +{ + # do not fail if execution policy cannot be set for this scope +} + diff --git a/setup/Setup/ShellLink.cs b/setup/Setup/ShellLink.cs index 8668707bcc4a..80144cca986d 100644 --- a/setup/Setup/ShellLink.cs +++ b/setup/Setup/ShellLink.cs @@ -435,6 +435,14 @@ public void SetWindowSize(short x, short y) this.consoleProperties.dwWindowSize = c; } + public void SetFont() + { + this.consoleProperties.FaceName = "Lucida Console"; + this.consoleProperties.uFontFamily = 54; + this.consoleProperties.uFontWeight = 400; + this.consoleProperties.uCursorSize = 25; + } + // This does more than console colors private void SetConsoleProperties() { diff --git a/setup/azurecmd.wxs b/setup/azurecmd.wxs index 1d0b416685a9..80fd77a1afa0 100644 --- a/setup/azurecmd.wxs +++ b/setup/azurecmd.wxs @@ -1,14 +1,14 @@  - + - + - + + VersionNT64 + + + + NOT VersionNT64 + + + + + + + + + + + + < "AzureRM.Profile")]]> + + + < "3.0")]]> @@ -69,7 +89,13 @@ - + + + + + + + @@ -90,16 +116,19 @@ + + NOT Installed NOT Installed + NOT Installed diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index f36eabb1849d..0fcdf1085617 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -4,9 +4,6 @@ - - - @@ -495,6 +492,9 @@ + + + @@ -1128,6 +1128,9 @@ + + + @@ -1154,6 +1157,9 @@ + + + @@ -1371,6 +1377,9 @@ + + + @@ -1823,6 +1832,9 @@ + + + @@ -4355,7 +4367,6 @@ - @@ -4515,6 +4526,7 @@ + @@ -4722,6 +4734,7 @@ + @@ -4730,6 +4743,7 @@ + @@ -4801,6 +4815,7 @@ + @@ -4949,6 +4964,7 @@ + diff --git a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj index a0e36b42276c..1b55a6ebfc60 100644 --- a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj +++ b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj @@ -56,7 +56,7 @@ ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/Common/Commands.Common.Storage/packages.config b/src/Common/Commands.Common.Storage/packages.config index 1e799337d90b..f329f568d540 100644 --- a/src/Common/Commands.Common.Storage/packages.config +++ b/src/Common/Commands.Common.Storage/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 9d451bc2e689..afa55f829b1d 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -25,6 +25,7 @@ using System.IO; using System.Management.Automation.Host; using System.Text; +using System.Linq; using System.Threading; namespace Microsoft.WindowsAzure.Commands.Utilities.Common @@ -160,7 +161,10 @@ public static bool IsDataCollectionAllowed() protected bool CheckIfInteractive() { bool interactive = true; - if (this.Host == null || this.Host.UI == null || this.Host.UI.RawUI == null) + if (this.Host == null || + this.Host.UI == null || + this.Host.UI.RawUI == null || + Environment.GetCommandLineArgs().Any(s => s.Equals("-NonInteractive", StringComparison.OrdinalIgnoreCase))) { interactive = false; } @@ -235,7 +239,7 @@ protected override void EndProcessing() DebugStreamTraceListener.RemoveAdalTracing(_adalListener); FlushDebugMessages(); - AzureSession.ClientFactory.UserAgents.RemoveAll(u => u.Product.Name == ModuleName); + AzureSession.ClientFactory.UserAgents.RemoveWhere(u => u.Product.Name == ModuleName); AzureSession.ClientFactory.RemoveHandler(typeof(CmdletInfoHandler)); base.EndProcessing(); } diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 6a2a6519ba57..05b9dc4b7a8a 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -64,7 +64,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/Common/Commands.Common/packages.config b/src/Common/Commands.Common/packages.config index 52173a5ec6e9..3ac1eb9411ac 100644 --- a/src/Common/Commands.Common/packages.config +++ b/src/Common/Commands.Common/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj index e1532f6673e6..ee1ebadc67c7 100644 --- a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj +++ b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj @@ -47,7 +47,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs b/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs index 8225e735073a..8859ddc765d2 100644 --- a/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs +++ b/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs @@ -42,7 +42,7 @@ public class MockClientFactory : IClientFactory public MockClientFactory(IEnumerable clients, bool throwIfClientNotSpecified = true) { - UniqueUserAgents = new HashSet(); + UserAgents = new HashSet(); ManagementClients = clients.ToList(); throwWhenNotAvailable = throwIfClientNotSpecified; } @@ -177,15 +177,15 @@ public void RemoveHandler(Type handlerType) public void AddUserAgent(string productName, string productVersion) { - throw new NotImplementedException(); + this.UserAgents.Add(new ProductInfoHeaderValue(productName, productVersion)); } public void AddUserAgent(string productName) { - throw new NotImplementedException(); + this.AddUserAgent(productName, string.Empty); } - public HashSet UniqueUserAgents { get; set; } + public HashSet UserAgents { get; set; } /// /// This class exists to allow adding an additional reference to the httpClient to prevent the client @@ -233,17 +233,5 @@ public TClient CreateCustomArmClient(params object[] parameters) where return client; } - - List IClientFactory.UserAgents - { - get - { - return this.UniqueUserAgents.ToList(); - } - set - { - value.ForEach((v) => this.UniqueUserAgents.Add(v)); - } - } } } diff --git a/src/Common/Commands.ScenarioTests.Common/packages.config b/src/Common/Commands.ScenarioTests.Common/packages.config index e75290c6e3d4..940ac523e90c 100644 --- a/src/Common/Commands.ScenarioTests.Common/packages.config +++ b/src/Common/Commands.ScenarioTests.Common/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Storage/Azure.Storage.psd1 b/src/Common/Storage/Azure.Storage.psd1 index 40c802de1bfe..695da30a9b31 100644 --- a/src/Common/Storage/Azure.Storage.psd1 +++ b/src/Common/Storage/Azure.Storage.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.1' +ModuleVersion = '0.10.2' # ID used to uniquely identify this module GUID = '00612bca-fa22-401d-a671-9cc48b010e3b' diff --git a/src/Common/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj b/src/Common/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj index fad8afa8f084..4e8504bcd744 100644 --- a/src/Common/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj +++ b/src/Common/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj @@ -59,7 +59,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Storage/Commands.Storage.Test/packages.config b/src/Common/Storage/Commands.Storage.Test/packages.config index b2556c738bb3..8fa4353a3804 100644 --- a/src/Common/Storage/Commands.Storage.Test/packages.config +++ b/src/Common/Storage/Commands.Storage.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Storage/Commands.Storage/Commands.Storage.csproj b/src/Common/Storage/Commands.Storage/Commands.Storage.csproj index 6c70282d2013..06502f903834 100644 --- a/src/Common/Storage/Commands.Storage/Commands.Storage.csproj +++ b/src/Common/Storage/Commands.Storage/Commands.Storage.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/Common/Storage/Commands.Storage/packages.config b/src/Common/Storage/Commands.Storage/packages.config index fead318d5dc7..21ea964ffa8a 100644 --- a/src/Common/Storage/Commands.Storage/packages.config +++ b/src/Common/Storage/Commands.Storage/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 index 1c9d78acc997..17550cc4d0df 100644 --- a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 +++ b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'f875725d-8ce4-423f-a6af-ea880bc63f13' diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj index 4ea57af7f1c4..9aee4afc1047 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj @@ -60,7 +60,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/packages.config index 9192150f5121..6d660afd8a6a 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj index 35b71ca6d58c..ac3c823742d5 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj @@ -42,7 +42,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config index fa696e92bcc8..caf94f9ca949 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj index d52dc50cada0..b191b8e44414 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj @@ -59,7 +59,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config index 9192150f5121..6d660afd8a6a 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj index 3ee91af4f571..d7854987ee3e 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj @@ -42,7 +42,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config index e539dca3db8d..330447aa695d 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Automation/AzureRM.Automation.psd1 b/src/ResourceManager/Automation/AzureRM.Automation.psd1 index 2eb24fb608e0..845bc92c3a36 100644 --- a/src/ResourceManager/Automation/AzureRM.Automation.psd1 +++ b/src/ResourceManager/Automation/AzureRM.Automation.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'bcea1c70-a32b-48c3-a05c-323e1c02f4d3' diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj index 34d14e3c17a8..02fdbb743d0e 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj +++ b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj @@ -57,7 +57,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/packages.config b/src/ResourceManager/Automation/Commands.Automation.Test/packages.config index 4108eb3b80fd..b95dfe5b273b 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/packages.config +++ b/src/ResourceManager/Automation/Commands.Automation.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Automation/Commands.Automation/Commands.Automation.csproj b/src/ResourceManager/Automation/Commands.Automation/Commands.Automation.csproj index 08ad4f8d7f55..c5e00e12759e 100644 --- a/src/ResourceManager/Automation/Commands.Automation/Commands.Automation.csproj +++ b/src/ResourceManager/Automation/Commands.Automation/Commands.Automation.csproj @@ -60,7 +60,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Automation/Commands.Automation/packages.config b/src/ResourceManager/Automation/Commands.Automation/packages.config index 40ca63abcdb2..4512176ad7c7 100644 --- a/src/ResourceManager/Automation/Commands.Automation/packages.config +++ b/src/ResourceManager/Automation/Commands.Automation/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 index de4a65774490..887ff6c4aa34 100644 --- a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 +++ b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '0b1d76f5-a928-4b8f-9c83-df26947568d4' diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index cc306d4e53ba..10c81bf82a90 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -36,7 +36,7 @@ - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config index 6a4986f52bd8..e3ec0f40913f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index f6b6884e6ceb..fb783fe3cb11 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config index 208138950e99..c02442288024 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 index f37c80a0731f..fb0d32d14a76 100644 --- a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 +++ b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'a8f00f40-1c1a-49b5-9db3-24076b75c3cf' diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj index 3a3b08a47d2d..d04fa24aacac 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -51,7 +51,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config b/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config index 164f0f28f6a8..e40ad90878a7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj index a765d5043ebd..6a197b0b2a7f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj @@ -52,7 +52,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/packages.config b/src/ResourceManager/AzureBatch/Commands.Batch/packages.config index 0f17c22e9dba..4bd8a3198720 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/packages.config +++ b/src/ResourceManager/AzureBatch/Commands.Batch/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index 57f80edf2d29..dcc2d7c7ffa9 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -62,7 +62,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config index 18d8016c4e46..431bb74b4c50 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj index 23537e5ba4c4..be3eb18ca8ff 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj @@ -47,7 +47,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs index a88e36b1e498..682dd7f2c154 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs @@ -177,12 +177,12 @@ public void RemoveHandler(Type handlerType) public void AddUserAgent(string productName, string productVersion) { - throw new NotImplementedException(); + this.UniqueUserAgents.Add(new ProductInfoHeaderValue(productName, productVersion)); } public void AddUserAgent(string productName) { - throw new NotImplementedException(); + this.AddUserAgent(productName, string.Empty); } public HashSet UniqueUserAgents { get; set; } @@ -234,15 +234,15 @@ public TClient CreateCustomArmClient(params object[] parameters) where return client; } - List IClientFactory.UserAgents + HashSet IClientFactory.UserAgents { get { - return this.UniqueUserAgents.ToList(); + return this.UniqueUserAgents; } set { - value.ForEach((v) => this.UniqueUserAgents.Add(v)); + this.UniqueUserAgents = value; } } } diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config index e75290c6e3d4..940ac523e90c 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index d0a1259f6af2..13fbdacb0d2f 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '0a83c907-1ffb-4d87-a492-c65ac7d7ed37' diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 0f6838da9cc2..77b530e2ff7e 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 index a64823aba5e3..fab125d3a485 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 @@ -398,27 +398,29 @@ function Get-SasUri # Get a Location according to resource provider. function Get-ResourceProviderLocation { - if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) - { - $namespace = $provider.Split("/")[0] - if($provider.Contains("/")) - { - $type = $provider.Substring($namespace.Length + 1) - $location = Get-AzureRmResourceProvider -ProviderNamespace $namespace | where {$_.ResourceTypes[0].ResourceTypeName -eq $type} + param ([string] $provider) + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $namespace = $provider.Split("/")[0] + if($provider.Contains("/")) + { + $type = $provider.Substring($namespace.Length + 1) + $location = Get-AzureRmResourceProvider -ProviderNamespace $namespace | where {$_.ResourceTypes[0].ResourceTypeName -eq $type} - if ($location -eq $null) - { - return "West US" - } else - { - return $location.Locations[0] - } - } + if ($location -eq $null) + { + return "West US" + } + else + { + return $location.Locations[0] + } + } - return "West US" - } + return "West US" + } - return "WestUS" + return "WestUS" } function Get-ComputeVMLocation diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 index 2d73acdc9c6f..6ed811e16352 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 @@ -244,13 +244,22 @@ function Test-VirtualMachineProfileWithoutAUC $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureRmVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $dekUri = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bddaaaaaa"; + $dekId = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; + $kekUri = "http://keyVaultName.vault.azure.net/secrets/secretName/secretVersion"; + $kekId = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; + + $p = Set-AzureRmVMOSDisk -VM $p -Windows -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty -DiskEncryptionKeyUrl $dekUri -DiskEncryptionKeyVaultId $dekId -KeyEncryptionKeyUrl $kekUri -KeyEncryptionKeyVaultId $kekId; $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureRmVMDataDisk -VM $p -Name 'testDataDisk3'; + Assert-AreEqual $p.StorageProfile.OSDisk.EncryptionSettings.DiskEncryptionKey.SourceVault.ReferenceUri $dekId + Assert-AreEqual $p.StorageProfile.OSDisk.EncryptionSettings.DiskEncryptionKey.SecretUrl $dekUri + Assert-AreEqual $p.StorageProfile.OSDisk.EncryptionSettings.KeyEncryptionKey.SourceVault.ReferenceUri $kekId + Assert-AreEqual $p.StorageProfile.OSDisk.EncryptionSettings.KeyEncryptionKey.KeyUrl $kekUri Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; Assert-AreEqual $p.StorageProfile.OSDisk.VirtualHardDisk.Uri $osDiskVhdUri; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config index a0e6252178a0..ea9ce5ba27d1 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 2ea76acece00..122b54911e60 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -59,7 +59,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index b897cc2966b6..ea3505f24485 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -28,6 +28,10 @@ public static class HelpMessages public const string VMOSDiskCaching = "The virtual machine OS disk's caching."; public const string VMOSDiskWindowsOSType = "The virtual machine disk's OS is Windows."; public const string VMOSDiskLinuxOSType = "The virtual machine disk's OS is Linux."; + public const string VMOSDiskDiskEncryptionKeyUrl = "the URL referencing a secret in a disk encryption key vault"; + public const string VMOSDiskDiskEncryptionKeyVaultId = "the Id of a disk encryption key vault"; + public const string VMOSDiskKeyEncryptionKeyUrl = "the URL referencing a key in a key encryption key vault"; + public const string VMOSDiskKeyEncryptionKeyVaultId = "the Id of a key encryption key Vault"; public const string VMSourceImageUri = "The virtual machine OS disk's source image Uri."; public const string VMDataDiskName = "The virtual machine data disk's name."; diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index a7601422decf..7921cd109595 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -912,5 +912,14 @@ public static string VirtualMachineStoppingConfirmation { return ResourceManager.GetString("VirtualMachineStoppingConfirmation", resourceCulture); } } + + /// + /// Looks up a localized string similar to You have to specify either both of KeyEncryptionKeyVaultId and KeyEncryptionKeyUrl or none of them.. + /// + public static string VMOSDiskDiskEncryptionBothKekVaultIdAndKekUrlRequired { + get { + return ResourceManager.GetString("VMOSDiskDiskEncryptionBothKekVaultIdAndKekUrlRequired", resourceCulture); + } + } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index b5e744074a4e..ceff1a2ac198 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -452,4 +452,7 @@ The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip) Since the VM is created using premium storage, existing standard storage account, {0}, is used for boot diagnostics. {0} = existing standard storage account name + + You have to specify either both of KeyEncryptionKeyVaultId and KeyEncryptionKeyUrl or none of them. + \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs index b29fd2277b6b..219c853d3c9f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs @@ -25,13 +25,16 @@ namespace Microsoft.Azure.Commands.Compute [Cmdlet( VerbsCommon.Set, ProfileNouns.OSDisk, - DefaultParameterSetName = WindowsParamSet), + DefaultParameterSetName = DefaultParamSet), OutputType( typeof(PSVirtualMachine))] public class SetAzureVMOSDiskCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet { + protected const string DefaultParamSet = "DefaultParamSet"; protected const string WindowsParamSet = "WindowsParamSet"; protected const string LinuxParamSet = "LinuxParamSet"; + protected const string WindowsAndDiskEncryptionParameterSet = "WindowsDiskEncryptionParameterSet"; + protected const string LinuxAndDiskEncryptionParameterSet = "LinuxDiskEncryptionParameterSet"; [Alias("VMProfile")] [Parameter( @@ -90,6 +93,11 @@ public class SetAzureVMOSDiskCommand : Microsoft.Azure.Commands.ResourceManager. Position = 6, ValueFromPipelineByPropertyName = true, HelpMessage = HelpMessages.VMOSDiskWindowsOSType)] + [Parameter( + ParameterSetName = WindowsAndDiskEncryptionParameterSet, + Position = 6, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskWindowsOSType)] public SwitchParameter Windows { get; set; } [Parameter( @@ -97,8 +105,69 @@ public class SetAzureVMOSDiskCommand : Microsoft.Azure.Commands.ResourceManager. Position = 6, ValueFromPipelineByPropertyName = true, HelpMessage = HelpMessages.VMOSDiskLinuxOSType)] + [Parameter( + ParameterSetName = LinuxAndDiskEncryptionParameterSet, + Position = 6, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskLinuxOSType)] public SwitchParameter Linux { get; set; } + [Parameter( + ParameterSetName = WindowsAndDiskEncryptionParameterSet, + Mandatory = true, + Position = 7, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskDiskEncryptionKeyUrl)] + [Parameter( + ParameterSetName = LinuxAndDiskEncryptionParameterSet, + Mandatory = true, + Position = 7, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskDiskEncryptionKeyUrl)] + public string DiskEncryptionKeyUrl { get; set; } + + [Parameter( + ParameterSetName = WindowsAndDiskEncryptionParameterSet, + Mandatory = true, + Position = 8, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskDiskEncryptionKeyVaultId)] + [Parameter( + ParameterSetName = LinuxAndDiskEncryptionParameterSet, + Mandatory = true, + Position = 8, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskDiskEncryptionKeyVaultId)] + public string DiskEncryptionKeyVaultId { get; set; } + + [Parameter( + ParameterSetName = WindowsAndDiskEncryptionParameterSet, + Mandatory = false, + Position = 9, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskKeyEncryptionKeyUrl)] + [Parameter( + ParameterSetName = LinuxAndDiskEncryptionParameterSet, + Mandatory = false, + Position = 9, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskKeyEncryptionKeyUrl)] + public string KeyEncryptionKeyUrl { get; set; } + + [Parameter( + ParameterSetName = WindowsAndDiskEncryptionParameterSet, + Mandatory = false, + Position = 10, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskKeyEncryptionKeyVaultId)] + [Parameter( + ParameterSetName = LinuxAndDiskEncryptionParameterSet, + Mandatory = false, + Position = 10, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMOSDiskKeyEncryptionKeyVaultId)] + public string KeyEncryptionKeyVaultId { get; set; } + protected override void ProcessRecord() { if (this.VM.StorageProfile == null) @@ -106,6 +175,14 @@ protected override void ProcessRecord() this.VM.StorageProfile = new StorageProfile(); } + if ((string.IsNullOrEmpty(this.KeyEncryptionKeyVaultId) && !string.IsNullOrEmpty(this.KeyEncryptionKeyUrl)) + || (!string.IsNullOrEmpty(this.KeyEncryptionKeyVaultId) && string.IsNullOrEmpty(this.KeyEncryptionKeyUrl))) + { + WriteError(new ErrorRecord( + new Exception(Properties.Resources.VMOSDiskDiskEncryptionBothKekVaultIdAndKekUrlRequired), + string.Empty, ErrorCategory.InvalidArgument, null)); + } + this.VM.StorageProfile.OSDisk = new OSDisk { Caching = this.Caching, @@ -119,7 +196,31 @@ protected override void ProcessRecord() { Uri = this.SourceImageUri }, - CreateOption = this.CreateOption + CreateOption = this.CreateOption, + EncryptionSettings = + (this.ParameterSetName.Equals(WindowsAndDiskEncryptionParameterSet) || this.ParameterSetName.Equals(LinuxAndDiskEncryptionParameterSet)) + ? new DiskEncryptionSettings + { + DiskEncryptionKey = new KeyVaultSecretReference + { + SourceVault = new SourceVaultReference + { + ReferenceUri = this.DiskEncryptionKeyVaultId + }, + SecretUrl = this.DiskEncryptionKeyUrl + }, + KeyEncryptionKey = (this.KeyEncryptionKeyVaultId == null || this.KeyEncryptionKeyUrl == null) + ? null + : new KeyVaultKeyReference + { + KeyUrl = this.KeyEncryptionKeyUrl, + SourceVault = new SourceVaultReference + { + ReferenceUri = this.KeyEncryptionKeyVaultId + }, + } + } + : null }; WriteObject(this.VM); diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config index 43af3cd1317a..d9d1c3345e2c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute/packages.config @@ -3,13 +3,13 @@ - + - + diff --git a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 index 1e187935a9ba..bd4165713c01 100644 --- a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 +++ b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'e3c0f6bc-fe96-41a0-88f4-5e490a91f05d' diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj index 2d98568dd529..658ce44d2361 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -49,7 +49,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config index 26415ef3079c..b07f37496a15 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj index a6516a2c850a..fc68b44edffa 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj @@ -55,7 +55,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config index 8b5b471c9542..25070ebefabc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Dns/AzureRM.Dns.psd1 b/src/ResourceManager/Dns/AzureRM.Dns.psd1 index b5c380a00ee3..1daaf7f4e6c7 100644 --- a/src/ResourceManager/Dns/AzureRM.Dns.psd1 +++ b/src/ResourceManager/Dns/AzureRM.Dns.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '5e5ed8bc-27bf-4380-9de1-4b22ba0920b2' diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj index dcb94dadc147..7ce77d0c55ab 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj +++ b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj @@ -52,7 +52,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config index f2e4f22cf818..d9ab856077c4 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config +++ b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj index baf67c7ad770..024cad8dcf12 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj +++ b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj @@ -96,7 +96,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Dns/Commands.Dns/packages.config b/src/ResourceManager/Dns/Commands.Dns/packages.config index 0f0be4ceefef..1de0949a66c8 100644 --- a/src/ResourceManager/Dns/Commands.Dns/packages.config +++ b/src/ResourceManager/Dns/Commands.Dns/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 index e7c2987b6e5a..4372cd0163d0 100644 --- a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 +++ b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '3fd1475f-cb23-4ffb-bf08-33d94b7d1acb' diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index 4bfc1996890b..a044e2f8180b 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -39,7 +39,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config index 86dec64e8f16..4bc52b471c80 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index fee416ec33aa..fd46f385941d 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -107,7 +107,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config index 79f94431243d..5c03e48ac6e9 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Insights/AzureRM.Insights.psd1 b/src/ResourceManager/Insights/AzureRM.Insights.psd1 index 09964ef0e789..5a243ef424bb 100644 --- a/src/ResourceManager/Insights/AzureRM.Insights.psd1 +++ b/src/ResourceManager/Insights/AzureRM.Insights.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '698c387c-bd6b-41c6-82ce-721f1ef39548' diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj index 3b9400c99e3d..25372e70d71a 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -51,7 +51,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config index 7c03e55fc5a7..5b8c11b453af 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 7e269e98824f..9b5d4b37a5d9 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Insights/Commands.Insights/packages.config b/src/ResourceManager/Insights/Commands.Insights/packages.config index 18e68ebb27f7..45f1df139c04 100644 --- a/src/ResourceManager/Insights/Commands.Insights/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 index a0e053c3cfef..f62f8f0bf805 100644 --- a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 +++ b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'fa236c1f-6464-4d6a-a48d-db47c0e7923d' diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj index 76f1b5c562c7..113d226ce628 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -57,7 +57,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config index 8c26c2b5224e..fd94e2569ecc 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj index 8697bac4133d..4552dfe47401 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj @@ -117,7 +117,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config index e598227fe1f4..40490b890e30 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Network/AzureRM.Network.psd1 b/src/ResourceManager/Network/AzureRM.Network.psd1 index 473896760efc..31d9b92726a3 100644 --- a/src/ResourceManager/Network/AzureRM.Network.psd1 +++ b/src/ResourceManager/Network/AzureRM.Network.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.1' +ModuleVersion = '0.10.2' # ID used to uniquely identify this module GUID = 'eb75c732-e274-4a20-b502-e9958e63484a' diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj index 91acf17b1d68..a878e53eebae 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Network/Commands.Network.Test/packages.config b/src/ResourceManager/Network/Commands.Network.Test/packages.config index 0b54df24cb70..b95247832527 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/packages.config +++ b/src/ResourceManager/Network/Commands.Network.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index 5f346aca278d..8a7f87379979 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -55,7 +55,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Network/Commands.Network/packages.config b/src/ResourceManager/Network/Commands.Network/packages.config index dde607ec17c0..aa8065123dff 100644 --- a/src/ResourceManager/Network/Commands.Network/packages.config +++ b/src/ResourceManager/Network/Commands.Network/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/OperationalInsights/AzureRM.OperationalInsights.psd1 b/src/ResourceManager/OperationalInsights/AzureRM.OperationalInsights.psd1 index 27e3577c057b..f1f57bb89476 100644 --- a/src/ResourceManager/OperationalInsights/AzureRM.OperationalInsights.psd1 +++ b/src/ResourceManager/OperationalInsights/AzureRM.OperationalInsights.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'e827799a-7abf-4538-a61f-94dc52a48bd4' diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj index 33e61a04f0c0..0be9e73c12e8 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj @@ -48,7 +48,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/packages.config b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/packages.config index eb0b34fcfd7b..1e252f10746d 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/packages.config +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj index 48d1e803c8e9..9a6db5be884f 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj @@ -55,7 +55,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/packages.config b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/packages.config index 5f282edc3074..95ac5471dac9 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/packages.config +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Profile/AzureRM.Profile.psd1 b/src/ResourceManager/Profile/AzureRM.Profile.psd1 index 7f7e795f2a4a..e3c9ca9d0b47 100644 --- a/src/ResourceManager/Profile/AzureRM.Profile.psd1 +++ b/src/ResourceManager/Profile/AzureRM.Profile.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '342714fc-4009-4863-8afb-a9067e3db04b' diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ClientFactoryTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/ClientFactoryTests.cs new file mode 100644 index 000000000000..a08d5154c589 --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ClientFactoryTests.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using Xunit; +using System; +using System.Net.Http.Headers; +using Hyak.Common; +using Microsoft.Azure; +using Microsoft.Azure.Common.Authentication.Factories; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Rest.TransientFaultHandling; +using Microsoft.WindowsAzure.Commands.ScenarioTest; + +namespace Microsoft.Azure.Commands.ResourceManager.Profile.Test +{ + public class ClientFactoryTests + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void VerifyUserAgentValuesAreTransmitted() + { + var storedClientFactory = AzureSession.ClientFactory; + var storedAuthFactory = AzureSession.AuthenticationFactory; + try + { + var authFactory = new AuthenticationFactory(); + authFactory.TokenProvider = new MockAccessTokenProvider(Guid.NewGuid().ToString(), "user@contoso.com"); + AzureSession.AuthenticationFactory = authFactory; + var factory = new ClientFactory(); + AzureSession.ClientFactory = factory; + factory.UserAgents.Clear(); + factory.AddUserAgent("agent1"); + factory.AddUserAgent("agent1", "1.0.0"); + factory.AddUserAgent("agent1", "1.0.0"); + factory.AddUserAgent("agent1", "1.9.8"); + factory.AddUserAgent("agent2"); + Assert.Equal(4, factory.UserAgents.Count); + var client = factory.CreateClient(new AzureContext( + new AzureSubscription + { + Id = Guid.NewGuid(), + Properties = new Dictionary + { + {AzureSubscription.Property.Tenants, "123"} + } + }, + new AzureAccount + { + Id = "user@contoso.com", + Type = AzureAccount.AccountType.User, + Properties = new Dictionary + { + {AzureAccount.Property.Tenants, "123"} + } + }, + AzureEnvironment.PublicEnvironments["AzureCloud"] + + ), AzureEnvironment.Endpoint.ResourceManager); + Assert.Equal(5, client.HttpClient.DefaultRequestHeaders.UserAgent.Count); + Assert.True(client.HttpClient.DefaultRequestHeaders.UserAgent.Contains(new ProductInfoHeaderValue("agent1", ""))); + Assert.True(client.HttpClient.DefaultRequestHeaders.UserAgent.Contains(new ProductInfoHeaderValue("agent1", "1.0.0"))); + Assert.True(client.HttpClient.DefaultRequestHeaders.UserAgent.Contains(new ProductInfoHeaderValue("agent1", "1.9.8"))); + Assert.True(client.HttpClient.DefaultRequestHeaders.UserAgent.Contains(new ProductInfoHeaderValue("agent2", ""))); + } + finally + { + AzureSession.ClientFactory = storedClientFactory; + AzureSession.AuthenticationFactory = storedAuthFactory; + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj index 255243591b76..bf0ce8add556 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj +++ b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj @@ -57,7 +57,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True @@ -177,9 +177,11 @@ + + @@ -240,4 +242,4 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ContextCmdletTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/ContextCmdletTests.cs index 462f785dd2ed..08878f8fbd46 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/ContextCmdletTests.cs +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ContextCmdletTests.cs @@ -24,6 +24,7 @@ using System; using Microsoft.Azure.Commands.Profile.Models; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using System.Management.Automation; namespace Microsoft.Azure.Commands.ResourceManager.Profile.Test { @@ -58,7 +59,7 @@ public void GetAzureContext() var context = (PSAzureContext) commandRuntimeMock.OutputPipeline[0]; Assert.Equal("test", context.Subscription.SubscriptionName); } - + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void SelectAzureContextWithNoSubscriptionAndTenant() @@ -76,7 +77,8 @@ public void SelectAzureContextWithNoSubscriptionAndTenant() // Verify Assert.True(commandRuntimeMock.OutputPipeline.Count == 1); var context = (PSAzureContext)commandRuntimeMock.OutputPipeline[0]; - Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", context.Tenant.TenantId); + // TenantId is not sufficient to change the context. + Assert.NotEqual("72f988bf-86f1-41af-91ab-2d7cd011db47", context.Tenant.TenantId); } [Fact] diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs index f5bd29dd5060..22b9ba0d7a23 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs +++ b/src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs @@ -50,7 +50,7 @@ public void LoginWithSubscriptionAndTenant() // Setup cmdlt.CommandRuntime = commandRuntimeMock; cmdlt.SubscriptionId = "2c224e7e-3ef5-431d-a57b-e71f4662e3a6"; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; // Act cmdlt.InvokeBeginProcessing(); @@ -69,7 +69,7 @@ public void LoginWithInvalidSubscriptionAndTenantThrowsCloudException() // Setup cmdlt.CommandRuntime = commandRuntimeMock; cmdlt.SubscriptionId = "2c224e7e-3ef5-431d-a57b-e71f4662e3a5"; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; // Act cmdlt.InvokeBeginProcessing(); @@ -119,7 +119,7 @@ public void LoginWithNoSubscriptionAndTenant() var cmdlt = new AddAzureRMAccountCommand(); // Setup cmdlt.CommandRuntime = commandRuntimeMock; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; // Act cmdlt.InvokeBeginProcessing(); @@ -137,7 +137,7 @@ public void LoginWithSubscriptionname() var cmdlt = new AddAzureRMAccountCommand(); // Setup cmdlt.CommandRuntime = commandRuntimeMock; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; cmdlt.SubscriptionName = "Node CLI Test"; // Act @@ -156,7 +156,7 @@ public void LoginWithBothSubscriptionIdAndNameThrowsCloudException() var cmdlt = new AddAzureRMAccountCommand(); // Setup cmdlt.CommandRuntime = commandRuntimeMock; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; cmdlt.SubscriptionName = "Node CLI Test"; cmdlt.SubscriptionId = "2c224e7e-3ef5-431d-a57b-e71f4662e3a6"; diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/NullClient.cs b/src/ResourceManager/Profile/Commands.Profile.Test/NullClient.cs new file mode 100644 index 000000000000..f586e73f33bb --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/NullClient.cs @@ -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. +// ---------------------------------------------------------------------------------- + + +using System; +using Hyak.Common; +using Microsoft.Azure; + +namespace Microsoft.Azure.Commands.ResourceManager.Profile.Test +{ + public class NullClient : ServiceClient + { + public NullClient(SubscriptionCloudCredentials credentials) : base() + { + + } + public NullClient(SubscriptionCloudCredentials credentials, Uri baseUri) : base() + { + + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.SubscriptionCmdletTests/PipingWithRmContextWorks.json b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.SubscriptionCmdletTests/PipingWithRmContextWorks.json index c81f631c6bd2..4a6878776774 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.SubscriptionCmdletTests/PipingWithRmContextWorks.json +++ b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.SubscriptionCmdletTests/PipingWithRmContextWorks.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"subscriptionId\": \"279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"displayName\": \"Azure SDK CI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"subscriptionId\": \"69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"displayName\": \"WebStackAndEF_TestInfra\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"subscriptionId\": \"9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"displayName\": \"FISMA Pen Testing Subscription\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"subscriptionId\": \"c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"displayName\": \"Azure SDK Powershell Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"subscriptionId\": \"d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"displayName\": \"Test Subscription 1 for Migration\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"subscriptionId\": \"b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"displayName\": \"XFD Data Systems - Public\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2747" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "6a51dccb-b1f8-4484-a75b-2dc9c62a91f3" + "ab8756d0-4404-4a60-ae6e-2653656c0b23" ], "x-ms-correlation-request-id": [ - "6a51dccb-b1f8-4484-a75b-2dc9c62a91f3" + "ab8756d0-4404-4a60-ae6e-2653656c0b23" ], "x-ms-routing-request-id": [ - "WESTUS:20151002T035449Z:6a51dccb-b1f8-4484-a75b-2dc9c62a91f3" + "WESTUS:20151022T180626Z:ab8756d0-4404-4a60-ae6e-2653656c0b23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Fri, 02 Oct 2015 03:54:49 GMT" + "Thu, 22 Oct 2015 18:06:26 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"subscriptionId\": \"279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"displayName\": \"Azure SDK CI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"subscriptionId\": \"69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"displayName\": \"WebStackAndEF_TestInfra\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"subscriptionId\": \"9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"displayName\": \"FISMA Pen Testing Subscription\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"subscriptionId\": \"c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"displayName\": \"Azure SDK Powershell Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"subscriptionId\": \"d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"displayName\": \"Test Subscription 1 for Migration\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"subscriptionId\": \"b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"displayName\": \"XFD Data Systems - Public\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2747" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "7d01be5f-25e0-4246-abab-9565e9bf07bb" + "26b98034-05ee-4844-ac72-a8c02a305858" ], "x-ms-correlation-request-id": [ - "7d01be5f-25e0-4246-abab-9565e9bf07bb" + "26b98034-05ee-4844-ac72-a8c02a305858" ], "x-ms-routing-request-id": [ - "WESTUS:20151002T035450Z:7d01be5f-25e0-4246-abab-9565e9bf07bb" + "WESTUS:20151022T180627Z:26b98034-05ee-4844-ac72-a8c02a305858" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,7 +91,7 @@ "no-cache" ], "Date": [ - "Fri, 02 Oct 2015 03:54:49 GMT" + "Thu, 22 Oct 2015 18:06:26 GMT" ] }, "StatusCode": 200 @@ -106,10 +106,10 @@ "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"subscriptionId\": \"279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"displayName\": \"Azure SDK CI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"subscriptionId\": \"69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"displayName\": \"WebStackAndEF_TestInfra\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"subscriptionId\": \"9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"displayName\": \"FISMA Pen Testing Subscription\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"subscriptionId\": \"c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"displayName\": \"Azure SDK Powershell Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"subscriptionId\": \"d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"displayName\": \"Test Subscription 1 for Migration\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"subscriptionId\": \"b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"displayName\": \"XFD Data Systems - Public\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2747" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -121,16 +121,112 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14997" + ], + "x-ms-request-id": [ + "af0e42bf-875b-4457-963e-24fa3470061e" + ], + "x-ms-correlation-request-id": [ + "af0e42bf-875b-4457-963e-24fa3470061e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151022T180627Z:af0e42bf-875b-4457-963e-24fa3470061e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 18:06:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14996" + ], + "x-ms-request-id": [ + "4bc6ff63-684d-423f-87c4-ede93d0b098a" + ], + "x-ms-correlation-request-id": [ + "4bc6ff63-684d-423f-87c4-ede93d0b098a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151022T180627Z:4bc6ff63-684d-423f-87c4-ede93d0b098a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 18:06:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14995" ], "x-ms-request-id": [ - "e33163a6-34c3-4f09-80ba-2f7f827c9415" + "20764464-9863-4fc0-9228-3bacb5690b52" ], "x-ms-correlation-request-id": [ - "e33163a6-34c3-4f09-80ba-2f7f827c9415" + "20764464-9863-4fc0-9228-3bacb5690b52" ], "x-ms-routing-request-id": [ - "WESTUS:20151002T035450Z:e33163a6-34c3-4f09-80ba-2f7f827c9415" + "WESTUS:20151022T180628Z:20764464-9863-4fc0-9228-3bacb5690b52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,7 +235,7 @@ "no-cache" ], "Date": [ - "Fri, 02 Oct 2015 03:54:49 GMT" + "Thu, 22 Oct 2015 18:06:27 GMT" ] }, "StatusCode": 200 @@ -154,10 +250,10 @@ "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"subscriptionId\": \"279b0675-cf67-467f-98f0-67ae31eb540f\",\r\n \"displayName\": \"Azure SDK CI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"subscriptionId\": \"69801886-4b2b-493b-ba5b-3b26dabadadc\",\r\n \"displayName\": \"WebStackAndEF_TestInfra\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"subscriptionId\": \"9ed7cca5-c306-4f66-9d1c-2766e67013d8\",\r\n \"displayName\": \"FISMA Pen Testing Subscription\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"subscriptionId\": \"c9cbd920-c00c-427c-852b-8aaf38badaeb\",\r\n \"displayName\": \"Azure SDK Powershell Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"subscriptionId\": \"d1e52cbc-b073-42e2-a0a0-c2f547118a6e\",\r\n \"displayName\": \"Test Subscription 1 for Migration\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"subscriptionId\": \"b6b78feb-3074-4129-8748-42cee6c73020\",\r\n \"displayName\": \"XFD Data Systems - Public\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2747" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,16 +265,112 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14994" + ], + "x-ms-request-id": [ + "dc63ecd4-c5ee-46a4-876e-fb6ffc3ac8fe" + ], + "x-ms-correlation-request-id": [ + "dc63ecd4-c5ee-46a4-876e-fb6ffc3ac8fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151022T180628Z:dc63ecd4-c5ee-46a4-876e-fb6ffc3ac8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 18:06:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14993" + ], + "x-ms-request-id": [ + "2ee70574-ce24-40e7-81a2-d94a9f7bd48b" + ], + "x-ms-correlation-request-id": [ + "2ee70574-ce24-40e7-81a2-d94a9f7bd48b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151022T180629Z:2ee70574-ce24-40e7-81a2-d94a9f7bd48b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 18:06:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Subscriptions.SubscriptionClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"subscriptionId\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d\",\r\n \"displayName\": \"node\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"subscriptionId\": \"2c224e7e-3ef5-431d-a57b-e71f4662e3a6\",\r\n \"displayName\": \"Node CLI Test\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"subscriptionId\": \"6b085460-5f21-477e-ba44-1035046e9101\",\r\n \"displayName\": \"Azure SDK Infrastructure\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"subscriptionId\": \"db1ab6f0-4769-4b27-930e-01e2ef9c123c\",\r\n \"displayName\": \"Azure SDK sandbox\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14992" ], "x-ms-request-id": [ - "6a858a8b-5996-41e3-96f6-f13bfb8d607d" + "fc489996-6e3a-42c3-9a2f-8c4d13daf330" ], "x-ms-correlation-request-id": [ - "6a858a8b-5996-41e3-96f6-f13bfb8d607d" + "fc489996-6e3a-42c3-9a2f-8c4d13daf330" ], "x-ms-routing-request-id": [ - "WESTUS:20151002T035450Z:6a858a8b-5996-41e3-96f6-f13bfb8d607d" + "WESTUS:20151022T180629Z:fc489996-6e3a-42c3-9a2f-8c4d13daf330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 02 Oct 2015 03:54:50 GMT" + "Thu, 22 Oct 2015 18:06:28 GMT" ] }, "StatusCode": 200 @@ -220,13 +412,13 @@ "14999" ], "x-ms-request-id": [ - "ff94ac85-24fd-4d59-936c-90a4bbe24ebe" + "6830d8eb-637a-4150-b016-7aa4f69013de" ], "x-ms-correlation-request-id": [ - "ff94ac85-24fd-4d59-936c-90a4bbe24ebe" + "6830d8eb-637a-4150-b016-7aa4f69013de" ], "x-ms-routing-request-id": [ - "WESTUS:20151002T035450Z:ff94ac85-24fd-4d59-936c-90a4bbe24ebe" + "WESTUS:20151022T180627Z:6830d8eb-637a-4150-b016-7aa4f69013de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,7 +427,7 @@ "no-cache" ], "Date": [ - "Fri, 02 Oct 2015 03:54:49 GMT" + "Thu, 22 Oct 2015 18:06:27 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/SubscriptionCmdletTests.ps1 b/src/ResourceManager/Profile/Commands.Profile.Test/SubscriptionCmdletTests.ps1 index e43d95ad10b5..433413fd5d42 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/SubscriptionCmdletTests.ps1 +++ b/src/ResourceManager/Profile/Commands.Profile.Test/SubscriptionCmdletTests.ps1 @@ -52,6 +52,7 @@ function Test-PipingWithContext $name = $firstSubscription.SubscriptionName $nameContext = Get-AzureRmSubscription -SubscriptionName $name | Set-AzureRmContext $idContext = Get-AzureRmSubscription -SubscriptionId $id | Set-AzureRmContext + $contextByName = Set-AzureRmContext -SubscriptionName $name Assert-True { $nameContext -ne $null } Assert-True { $nameContext.Subscription -ne $null } Assert-True { $nameContext.Subscription.SubscriptionId -ne $null } @@ -62,6 +63,11 @@ function Test-PipingWithContext Assert-True { $idContext.Subscription.SubscriptionName -ne $null } Assert-AreEqual $idContext.Subscription.SubscriptionId $nameContext.Subscription.SubscriptionId Assert-AreEqual $idContext.Subscription.SubscriptionName $nameContext.Subscription.SubscriptionName + Assert-True { $contextByName -ne $null } + Assert-True { $contextByName.Subscription -ne $null } + Assert-True { $contextByName.Subscription.SubscriptionId -ne $null } + Assert-True { $contextByName.Subscription.SubscriptionName -ne $null } + Assert-AreEqual $contextByName.Subscription.SubscriptionName $nameContext.Subscription.SubscriptionName } function Test-SetAzureRmContextEndToEnd diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/TenantCmdletTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/TenantCmdletTests.cs index 11da48548d2e..6f12018f4a98 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/TenantCmdletTests.cs +++ b/src/ResourceManager/Profile/Commands.Profile.Test/TenantCmdletTests.cs @@ -49,7 +49,7 @@ public void GetTenantWithTenantParameter() var cmdlt = new GetAzureRMTenantCommand(); // Setup cmdlt.CommandRuntime = commandRuntimeMock; - cmdlt.Tenant = "72f988bf-86f1-41af-91ab-2d7cd011db47"; + cmdlt.TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47"; // Act Login("2c224e7e-3ef5-431d-a57b-e71f4662e3a6", null); @@ -69,7 +69,7 @@ public void GetTenantWithDomainParameter() var cmdlt = new GetAzureRMTenantCommand(); // Setup cmdlt.CommandRuntime = commandRuntimeMock; - cmdlt.Tenant = "microsoft.com"; + cmdlt.TenantId = "microsoft.com"; // Act Login("2c224e7e-3ef5-431d-a57b-e71f4662e3a6", null); @@ -107,7 +107,7 @@ private void Login(string subscriptionId, string tenantId) // Setup cmdlt.CommandRuntime = commandRuntimeMock; cmdlt.SubscriptionId = subscriptionId; - cmdlt.Tenant = tenantId; + cmdlt.TenantId = tenantId; // Act cmdlt.InvokeBeginProcessing(); diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/packages.config b/src/ResourceManager/Profile/Commands.Profile.Test/packages.config index d8b9aa976cf1..9067175ccdf7 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/packages.config +++ b/src/ResourceManager/Profile/Commands.Profile.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Profile/Commands.Profile/Account/AddAzureRmAccount.cs b/src/ResourceManager/Profile/Commands.Profile/Account/AddAzureRmAccount.cs index 4f9a53d31fe5..2a63234c107f 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Account/AddAzureRmAccount.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Account/AddAzureRmAccount.cs @@ -48,8 +48,9 @@ public class AddAzureRMAccountCommand : AzureRMCmdlet , IModuleAssemblyInitializ [Parameter(ParameterSetName = "User", Mandatory = false, HelpMessage = "Optional tenant name or ID")] [Parameter(ParameterSetName = "ServicePrincipal", Mandatory = true, HelpMessage = "TenantId name or ID")] [Parameter(ParameterSetName = "AccessToken", Mandatory = false, HelpMessage = "TenantId name or ID")] + [Alias("Tenant")] [ValidateNotNullOrEmpty] - public string Tenant { get; set; } + public string TenantId { get; set; } [Parameter(ParameterSetName = "AccessToken", Mandatory = true, HelpMessage = "AccessToken")] [ValidateNotNullOrEmpty] @@ -126,9 +127,9 @@ protected override void ProcessRecord() password = Credential.Password; } - if (!string.IsNullOrEmpty(Tenant)) + if (!string.IsNullOrEmpty(TenantId)) { - azureAccount.SetProperty(AzureAccount.Property.Tenants, new[] { Tenant }); + azureAccount.SetProperty(AzureAccount.Property.Tenants, new[] { TenantId }); } if( AzureRmProfileProvider.Instance.Profile == null) @@ -138,7 +139,7 @@ protected override void ProcessRecord() var profileClient = new RMProfileClient(AzureRmProfileProvider.Instance.Profile); - WriteObject((PSAzureProfile)profileClient.Login(azureAccount, Environment, Tenant, SubscriptionId, + WriteObject((PSAzureProfile)profileClient.Login(azureAccount, Environment, TenantId, SubscriptionId, SubscriptionName, password)); } diff --git a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj index c8444f45f9b2..4f63a3404830 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj @@ -55,7 +55,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Profile/Commands.Profile/Context/SetAzureRMContext.cs b/src/ResourceManager/Profile/Commands.Profile/Context/SetAzureRMContext.cs index a0a4f38fb9b5..43f4362a9f60 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Context/SetAzureRMContext.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Context/SetAzureRMContext.cs @@ -17,38 +17,36 @@ using Microsoft.Azure.Commands.Profile.Models; using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Commands.Profile.Properties; namespace Microsoft.Azure.Commands.Profile { /// /// Cmdlet to change current Azure context. /// - [Cmdlet(VerbsCommon.Set, "AzureRmContext", DefaultParameterSetName =TenantIdAndSubscriptionIdParameterSet)] + [Cmdlet(VerbsCommon.Set, "AzureRmContext", DefaultParameterSetName = SubscriptionNameParameterSet)] [Alias("Select-AzureRmSubscription")] [OutputType(typeof(PSAzureContext))] public class SetAzureRMContextCommand : AzureRMCmdlet { - private const string TenantIdParameterSet = "TenantId"; - private const string SubscriptionIdParameterSet = "Subscription"; - private const string TenantIdAndSubscriptionIdParameterSet = "TenantIdAndSubscriptionId"; + private const string SubscriptionNameParameterSet = "SubscriptionName"; + private const string SubscriptionIdParameterSet = "SubscriptionId"; private const string ContextParameterSet = "Context"; - [Parameter(ParameterSetName = TenantIdParameterSet, Mandatory = false, HelpMessage = "TenantId name or ID", ValueFromPipelineByPropertyName=true)] - [Parameter(ParameterSetName = TenantIdAndSubscriptionIdParameterSet, Mandatory = false, HelpMessage = "TenantId name or ID", ValueFromPipelineByPropertyName=true)] + [Parameter(ParameterSetName = SubscriptionNameParameterSet, Mandatory = false, HelpMessage = "TenantId name or ID", ValueFromPipelineByPropertyName = true)] + [Parameter(ParameterSetName = SubscriptionIdParameterSet, Mandatory = false, HelpMessage = "TenantId name or ID", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string TenantId { get; set; } - - [Parameter(ParameterSetName = SubscriptionIdParameterSet, Mandatory = true, HelpMessage = "Subscription", ValueFromPipelineByPropertyName=true)] - [Parameter(ParameterSetName = TenantIdAndSubscriptionIdParameterSet, Mandatory = true, HelpMessage = "Subscription", ValueFromPipelineByPropertyName=true)] + + [Parameter(ParameterSetName = SubscriptionIdParameterSet, Mandatory = true, HelpMessage = "Subscription", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string SubscriptionId { get; set; } - [Parameter(ParameterSetName = SubscriptionIdParameterSet, Mandatory = false, HelpMessage = "Subscription Name", ValueFromPipelineByPropertyName=true)] - [Parameter(ParameterSetName = TenantIdAndSubscriptionIdParameterSet, Mandatory = false, HelpMessage = "Subscription Name", ValueFromPipelineByPropertyName=true)] + [Parameter(ParameterSetName = SubscriptionNameParameterSet, Mandatory = true, HelpMessage = "Subscription Name", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] - public string SubscriptionName{ get; set; } - - [Parameter(ParameterSetName = ContextParameterSet, Mandatory = true, HelpMessage = "Context", ValueFromPipeline=true)] + public string SubscriptionName { get; set; } + + [Parameter(ParameterSetName = ContextParameterSet, Mandatory = true, HelpMessage = "Context", ValueFromPipeline = true)] public PSAzureContext Context { get; set; } protected override void ProcessRecord() @@ -58,14 +56,40 @@ protected override void ProcessRecord() AzureRmProfileProvider.Instance.Profile.SetContextWithCache(new AzureContext(Context.Subscription, Context.Account, Context.Environment, Context.Tenant)); } - else + else if (ParameterSetName == SubscriptionNameParameterSet) { var profileClient = new RMProfileClient(AzureRmProfileProvider.Instance.Profile); - profileClient.SetCurrentContext(SubscriptionId, TenantId); - if (!string.IsNullOrWhiteSpace(SubscriptionName)) + AzureSubscription subscription = null; + string tenantId = AzureRmProfileProvider.Instance.Profile.Context.Tenant.Id.ToString(); + + if (string.IsNullOrWhiteSpace(TenantId)) + { + WriteVerbose( + string.Format( + Resources.CurrentTenantInUse, + tenantId)); + } + else { - AzureRmProfileProvider.Instance.Profile.Context.Subscription.Name = SubscriptionName; + tenantId = TenantId; } + + if (!profileClient.TryGetSubscriptionByName( + tenantId, + SubscriptionName, + out subscription)) + { + throw new ItemNotFoundException( + string.Format(Resources.SubscriptionNameNotFoundError, SubscriptionName)); + } + + profileClient.SetCurrentContext(subscription.Id.ToString(), tenantId, verifySubscription: false); + AzureRmProfileProvider.Instance.Profile.Context.Subscription.Name = SubscriptionName; + } + else if (ParameterSetName == SubscriptionIdParameterSet) + { + var profileClient = new RMProfileClient(AzureRmProfileProvider.Instance.Profile); + profileClient.SetCurrentContext(SubscriptionId, TenantId); } WriteObject((PSAzureContext)AzureRmProfileProvider.Instance.Profile.Context); } diff --git a/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.dll-Help.xml b/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.dll-Help.xml index cae9dfa3e623..b76a5f0ff7d1 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.dll-Help.xml +++ b/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.dll-Help.xml @@ -16,7 +16,7 @@ NOTE THAT THIS CMDLET AUTHENTICATES ONLY AZURE RESOURCE MANAGER CMDLETS. SERVICE MANAGEMENT CMDLETS MUST BE SEPARATELY AUTHENTICATED USING THE ADD-AZUREACCOUNT OR IMPORT-AZUREPUBLISHSETTINGSFILE CMDLETS. - Log in to Azure Resource manager to provide authentication for management cmdlets. Microsoft Account (Live Id) and Oragnization Id credentials may be provided through the dialog prompt. Organizational ID and Service Principal credentials may be provided through a -Credential parameter. Access Token credentials may be provided through the AccessToken credential. By default, user is authenticated agains all available teants. The TenantId parameter may be provided to streamline authentication when access to only a single teant is needed. The SubscriptionId parameter may be provided to select a particular subscription by default, otherwise the first listed subscription will be selected. + Log in to Azure Resource manager to provide authentication for management cmdlets. Microsoft Account (Live Id) and Organization Id credentials may be provided through the dialog prompt. Organizational ID and Service Principal credentials may be provided through a -Credential parameter. Access Token credentials may be provided through the AccessToken credential. By default, user is authenticated against all available tenants. The TenantId parameter may be provided to streamline authentication when access to only a single tenant is needed. The SubscriptionId parameter may be provided to select a particular subscription by default, otherwise the first listed subscription will be selected. @@ -31,12 +31,12 @@ Credential - Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be sued to acquire tokens for authenticataing ARM cmdlets with Azure. + Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be used to acquire tokens for authenticating ARM cmdlets with Azure. PSCredential - Tenant + TenantId If provided, limit authentication to only the provided tenant. This parameter is required for authentication as a service principal. @@ -76,19 +76,19 @@ Credential - Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be sued to acquire tokens for authenticataing ARM cmdlets with Azure. + Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be sued to acquire tokens for authenticating ARM cmdlets with Azure. PSCredential ServicePrincipal - When provided, indicates that service princiapl credentials will be provided via the Credential parameter and the Tenant containing the given Servicew Principal will be provided in the TenantId parameter. + When provided, indicates that service principal credentials will be provided via the Credential parameter and the Tenant containing the given Service Principal will be provided in the TenantId parameter. SwitchParameter - Tenant + TenantId If provided, limit authentication to only the provided tenant. This parameter is required for authentication as a service principal. @@ -126,7 +126,7 @@ AzureEnvironment - Tenant + TenantId If provided, limit authentication to only the provided tenant. This parameter is required for authentication as a service principal. @@ -178,7 +178,7 @@ Credential - Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be sued to acquire tokens for authenticataing ARM cmdlets with Azure. + Securely provide the user id and password for Organization Id credentials or the Application Id and Secret for Service Principal credentials. The provided credentials will be used to acquire tokens for authenticating ARM cmdlets with Azure. PSCredential @@ -188,7 +188,7 @@ None - Tenant + TenantId If provided, limit authentication to only the provided tenant. This parameter is required for authentication as a service principal. @@ -240,7 +240,7 @@ ServicePrincipal - When provided, indicates that service princiapl credentials will be provided via the Credential parameter and the Tenant containing the given Servicew Principal will be provided in the TenantId parameter. + When provided, indicates that service principal credentials will be provided via the Credential parameter and the Tenant containing the given Service Principal will be provided in the TenantId parameter. SwitchParameter @@ -310,13 +310,13 @@ Add-AzureRmAccount - Displays a dialog where Microsoft Account or Oragnizational Id credentials may be provided. The given credentials will be used to acquire a token for authentication with Azure Resource Manager. Note that if multi-factor authentication (MFA) is enabled for your credentials, you must log in using the interactive option, or use Service Principal authentication. + Displays a dialog where Microsoft Account or Organizational Id credentials may be provided. The given credentials will be used to acquire a token for authentication with Azure Resource Manager. Note that if multi-factor authentication (MFA) is enabled for your credentials, you must log in using the interactive option, or use Service Principal authentication. Account: azureuser@contoso.com Environment: AzureCloud -Subscription: xxxx-xxxx-xxxx-xxxx -Tenant: xxxx-xxxx-xxxx-xxxx +SubscriptionId: xxxx-xxxx-xxxx-xxxx +TenantId: xxxx-xxxx-xxxx-xxxx @@ -340,8 +340,8 @@ Add-AzureRmAccount -Credential $credential Account: azureuser@contoso.onmicrosoft.cn Environment: AzureChinacloud -Subscription: xxxx-xxxx-xxxx-xxxx -Tenant: xxxx-xxxx-xxxx-xxxx +SubscriptionId: xxxx-xxxx-xxxx-xxxx +TenantId: xxxx-xxxx-xxxx-xxxx @@ -387,8 +387,8 @@ Tenant: zzzz-zzzz-zzzz-zzzz Account: user@example.com Environment: AzureCloud -Subscription: yyyy-yyyy-yyyy-yyyy -Tenant: xxxx-xxxx-xxxx-xxxx +SubscriptionId: yyyy-yyyy-yyyy-yyyy +TenantId: xxxx-xxxx-xxxx-xxxx @@ -467,7 +467,7 @@ Tenant: xxxx-xxxx-xxxx-xxxx - Add endpoints and metdaata that allow Azure Resource Manager cmdlets to connect with a new instance of Azure Resource Manager. Built-in environments AzureCloud and AzureChinaCloud target existing public instances of Azure Resource Manager. + Add endpoints and metdata that allow Azure Resource Manager cmdlets to connect with a new instance of Azure Resource Manager. Built-in environments AzureCloud and AzureChinaCloud target existing public instances of Azure Resource Manager. @@ -580,7 +580,7 @@ Tenant: xxxx-xxxx-xxxx-xxxx AdTenant - The default Active Direcotyr Tenant. + The default Active Directory Tenant. String @@ -799,7 +799,7 @@ Tenant: xxxx-xxxx-xxxx-xxxx AdTenant - The default Active Direcotyr Tenant. + The default Active Directory Tenant. String @@ -1168,7 +1168,7 @@ Tenant: xxxx-xxxx-xxxx-xxxx - Get detailed information, inbclusing subscription id, subscription name, and home tenant about subscriptions the current account can access. + Get detailed information, including subscription id, subscription name, and home tenant about subscriptions the current account can access. @@ -1500,7 +1500,7 @@ Subscription Name: Contoso Subscription 1 Get-AzureRmTenant - Tenant + TenantId Tenant to get information about. If not provided, all authorized tenants are returned. @@ -1524,7 +1524,7 @@ Subscription Name: Contoso Subscription 1 - Tenant + TenantId Tenant to get information about. If not provided, all authorized tenants are returned. @@ -2182,9 +2182,9 @@ Subscription Name: Contoso Subscription 1 Set-AzureRmContext - Tenant + TenantId - The tenant to taret in this session. + The tenant to target in this session. AzureTenant @@ -2265,9 +2265,9 @@ Subscription Name: Contoso Subscription 1 - Tenant + TenantId - The tenant to taret in this session. + The tenant to target in this session. AzureTenant @@ -2344,8 +2344,8 @@ Subscription Name: Contoso Subscription 1 Account: user@contoso.com Environment: AzureCloud -Subscription: xxxx-xxxx-xxxx-xxxx -Tenant: yyyy-yyyy-yyyy-yyyy +SubscriptionId: xxxx-xxxx-xxxx-xxxx +TenantId: yyyy-yyyy-yyyy-yyyy @@ -2497,7 +2497,7 @@ Tenant: yyyy-yyyy-yyyy-yyyy AdTenant - The default Active Direcotyr Tenant. + The default Active Directory Tenant. String @@ -2716,7 +2716,7 @@ Tenant: yyyy-yyyy-yyyy-yyyy AdTenant - The default Active Direcotyr Tenant. + The default Active Directory Tenant. String diff --git a/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.format.ps1xml b/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.format.ps1xml index 3b39e514b657..76cc3f806a77 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.format.ps1xml +++ b/src/ResourceManager/Profile/Commands.Profile/Microsoft.Azure.Commands.Profile.format.ps1xml @@ -19,11 +19,11 @@ $_.Context.Account.ToString() - + $_.Context.Tenant.ToString() - + $_.Context.Subscription.ToString() @@ -51,10 +51,12 @@ Account - Tenant + + $_.Tenant.ToString() - Subscription + + $_.Subscription.ToString() diff --git a/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs b/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs index dcec21991609..de7e6a3dfb4e 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs @@ -101,7 +101,7 @@ public AzureRMProfile Login(AzureAccount account, AzureEnvironment environment, return _profile; } - public AzureContext SetCurrentContext(string subscriptionId, string tenantId) + public AzureContext SetCurrentContext(string subscriptionId, string tenantId, bool verifySubscription = true) { if (!string.IsNullOrWhiteSpace(tenantId)) { @@ -123,8 +123,12 @@ public AzureContext SetCurrentContext(string subscriptionId, string tenantId) if (!string.IsNullOrWhiteSpace(subscriptionId)) { - if (!ListSubscriptions(_profile.Context.Tenant.Id.ToString()).Any(s => - string.Equals(s.Id.ToString(), subscriptionId, StringComparison.OrdinalIgnoreCase) ) ) + var subscription = ListSubscriptions(_profile.Context.Tenant.Id.ToString()) + .FirstOrDefault(s => + string.Equals(s.Id.ToString(), subscriptionId, StringComparison.OrdinalIgnoreCase)); + + if (verifySubscription && + subscription == null) { throw new ArgumentException(string.Format( "Provided subscription {0} does not exist under current tenant {1}", subscriptionId, _profile.Context.Tenant.Id)); @@ -136,7 +140,7 @@ public AzureContext SetCurrentContext(string subscriptionId, string tenantId) newSubscription.Account = _profile.Context.Subscription.Account; newSubscription.Environment = _profile.Context.Subscription.Environment; newSubscription.Properties = _profile.Context.Subscription.Properties; - newSubscription.Name = null; + newSubscription.Name = (subscription == null) ? null : subscription.Name; } _profile.SetContextWithCache(new AzureContext( diff --git a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs index 4a66c728e1aa..3fcf05ff0618 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs @@ -105,6 +105,15 @@ internal static string CommonTenantAuthFailed { } } + /// + /// Looks up a localized string similar to Current tenant with Id '{0}' will be used.. + /// + internal static string CurrentTenantInUse { + get { + return ResourceManager.GetString("CurrentTenantInUse", resourceCulture); + } + } + /// /// Looks up a localized string similar to The provided subscription ID "{0}" is not a valid Guid.. /// @@ -132,6 +141,15 @@ internal static string NoValidTenant { } } + /// + /// Looks up a localized string similar to Unable to find subscription with name '{0}'.. + /// + internal static string SubscriptionNameNotFoundError { + get { + return ResourceManager.GetString("SubscriptionNameNotFoundError", resourceCulture); + } + } + /// /// Looks up a localized string similar to Subscription {0} was not found in tenant {1}. Please verify that the subscription exists in this tenant.. /// diff --git a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx index 9e39364a5eff..56f05dacb496 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx +++ b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx @@ -132,6 +132,9 @@ Could not authenticate your user account {0} with the common tenant. Please login again using Login-AzureRmAccount. + + Current tenant with Id '{0}' will be used. + The provided subscription ID "{0}" is not a valid Guid. @@ -141,6 +144,9 @@ Please provide a valid tenant Id on the command line or execute Login-AzureRmAccount. + + Unable to find subscription with name '{0}'. + Subscription {0} was not found in tenant {1}. Please verify that the subscription exists in this tenant. diff --git a/src/ResourceManager/Profile/Commands.Profile/Tenant/GetAzureRMTenant.cs b/src/ResourceManager/Profile/Commands.Profile/Tenant/GetAzureRMTenant.cs index fd2153b48278..09efdb7d716f 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Tenant/GetAzureRMTenant.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Tenant/GetAzureRMTenant.cs @@ -29,15 +29,15 @@ namespace Microsoft.Azure.Commands.Profile public class GetAzureRMTenantCommand : AzureRMCmdlet { [Parameter(Mandatory = false, Position = 0, ValueFromPipelineByPropertyName = true)] - [Alias("Domain")] + [Alias("Domain", "Tenant")] [ValidateNotNullOrEmpty] - public string Tenant { get; set; } + public string TenantId { get; set; } protected override void ProcessRecord() { var profileClient = new RMProfileClient(AzureRmProfileProvider.Instance.Profile); - WriteObject(profileClient.ListTenants(Tenant).Select((t) => (PSAzureTenant)t), enumerateCollection: true); + WriteObject(profileClient.ListTenants(TenantId).Select((t) => (PSAzureTenant)t), enumerateCollection: true); } } } diff --git a/src/ResourceManager/Profile/Commands.Profile/packages.config b/src/ResourceManager/Profile/Commands.Profile/packages.config index 0fb80d976964..964c5dee1dd5 100644 --- a/src/ResourceManager/Profile/Commands.Profile/packages.config +++ b/src/ResourceManager/Profile/Commands.Profile/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 index 5f2b40ccd5ff..acb96fb30fc1 100644 --- a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 +++ b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '820628d7-6938-488a-8760-43373a5ffce6' diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj index 6ca8bd50079c..50075f7ed456 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj @@ -50,15 +50,15 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + + ..\..\..\packages\Microsoft.Azure.Management.Redis.1.1.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + True False @@ -171,9 +171,18 @@ PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs index a9e7402532d9..6c24b4f92efd 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.cs @@ -54,5 +54,12 @@ public void TestMaxMemoryPolicyErrorCheck() { RunPowerShellTest("Test-MaxMemoryPolicyErrorCheck"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRedisCacheClustering() + { + RunPowerShellTest("Test-RedisCacheClustering"); + } } } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 index 7ee5023a6878..7b60bf96138e 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTests.ps1 @@ -11,7 +11,7 @@ function Test-RedisCache $location = "North Central US" # Creating Cache - $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic + $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Standard Assert-AreEqual $cacheName $cacheCreated.Name Assert-AreEqual $location $cacheCreated.Location @@ -22,8 +22,8 @@ function Test-RedisCache Assert-AreEqual 6380 $cacheCreated.SslPort Assert-AreEqual "creating" $cacheCreated.ProvisioningState Assert-AreEqual "3.0" $cacheCreated.RedisVersion - Assert-AreEqual "250MB" $cacheCreated.Size - Assert-AreEqual "Basic" $cacheCreated.Sku + Assert-AreEqual "1GB" $cacheCreated.Size + Assert-AreEqual "Standard" $cacheCreated.Sku Assert-NotNull $cacheCreated.PrimaryKey "PrimaryKey do not exists" Assert-NotNull $cacheCreated.SecondaryKey "SecondaryKey do not exists" @@ -44,8 +44,8 @@ function Test-RedisCache Assert-AreEqual 6380 $cacheGet[0].SslPort Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState Assert-AreEqual "3.0" $cacheGet[0].RedisVersion - Assert-AreEqual "250MB" $cacheGet[0].Size - Assert-AreEqual "Basic" $cacheGet[0].Sku + Assert-AreEqual "1GB" $cacheGet[0].Size + Assert-AreEqual "Standard" $cacheGet[0].Sku break } Assert-False {$i -eq 60} "Cache is not in succeeded state even after 30 min." @@ -63,8 +63,8 @@ function Test-RedisCache Assert-AreEqual 6380 $cacheUpdated.SslPort Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState Assert-AreEqual "3.0" $cacheUpdated.RedisVersion - Assert-AreEqual "250MB" $cacheUpdated.Size - Assert-AreEqual "Basic" $cacheUpdated.Sku + Assert-AreEqual "1GB" $cacheUpdated.Size + Assert-AreEqual "Standard" $cacheUpdated.Sku Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy") Assert-True { $cacheUpdated.EnableNonSslPort } @@ -89,8 +89,8 @@ function Test-RedisCache Assert-AreEqual 6380 $cachesInResourceGroup[$i].SslPort Assert-AreEqual "succeeded" $cachesInResourceGroup[$i].ProvisioningState Assert-AreEqual "3.0" $cachesInResourceGroup[$i].RedisVersion - Assert-AreEqual "250MB" $cachesInResourceGroup[$i].Size - Assert-AreEqual "Basic" $cachesInResourceGroup[$i].Sku + Assert-AreEqual "1GB" $cachesInResourceGroup[$i].Size + Assert-AreEqual "Standard" $cachesInResourceGroup[$i].Sku break } } @@ -115,8 +115,8 @@ function Test-RedisCache Assert-AreEqual 6380 $cachesInSubscription[$i].SslPort Assert-AreEqual "succeeded" $cachesInSubscription[$i].ProvisioningState Assert-AreEqual "3.0" $cachesInSubscription[$i].RedisVersion - Assert-AreEqual "250MB" $cachesInSubscription[$i].Size - Assert-AreEqual "Basic" $cachesInSubscription[$i].Sku + Assert-AreEqual "1GB" $cachesInSubscription[$i].Size + Assert-AreEqual "Standard" $cachesInSubscription[$i].Sku break } } @@ -166,7 +166,7 @@ function Test-RedisCachePipeline $location = "North Central US" # Creating Cache - $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 250MB -Sku Basic -EnableNonSslPort $true + $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 1GB -Sku Basic -EnableNonSslPort $true Assert-AreEqual $cacheName $cacheCreated.Name Assert-AreEqual $location $cacheCreated.Location @@ -177,7 +177,7 @@ function Test-RedisCachePipeline Assert-AreEqual 6380 $cacheCreated.SslPort Assert-AreEqual "creating" $cacheCreated.ProvisioningState Assert-AreEqual "3.0" $cacheCreated.RedisVersion - Assert-AreEqual "250MB" $cacheCreated.Size + Assert-AreEqual "1GB" $cacheCreated.Size Assert-AreEqual "Basic" $cacheCreated.Sku Assert-True { $cacheCreated.EnableNonSslPort } @@ -200,7 +200,7 @@ function Test-RedisCachePipeline Assert-AreEqual 6380 $cacheGet[0].SslPort Assert-AreEqual "succeeded" $cacheGet[0].ProvisioningState Assert-AreEqual "3.0" $cacheGet[0].RedisVersion - Assert-AreEqual "250MB" $cacheGet[0].Size + Assert-AreEqual "1GB" $cacheGet[0].Size Assert-AreEqual "Basic" $cacheGet[0].Sku break } @@ -220,7 +220,7 @@ function Test-RedisCachePipeline Assert-AreEqual 6380 $cacheUpdatedPiped.SslPort Assert-AreEqual "succeeded" $cacheUpdatedPiped.ProvisioningState Assert-AreEqual "3.0" $cacheUpdatedPiped.RedisVersion - Assert-AreEqual "250MB" $cacheUpdatedPiped.Size + Assert-AreEqual "1GB" $cacheUpdatedPiped.Size Assert-AreEqual "Basic" $cacheUpdatedPiped.Sku Assert-AreEqual "allkeys-random" $cacheUpdatedPiped.RedisConfiguration.Item("maxmemory-policy") Assert-False { $cacheUpdatedPiped.EnableNonSslPort } @@ -247,7 +247,7 @@ function Test-SetRedisCacheBugFixTest { # Setup # resource group should exists - $resourceGroupName = "Siddharth" + $resourceGroupName = "siddharth" $cacheName = "siddharthchatrola" $location = "North Central US" @@ -273,5 +273,124 @@ function Test-MaxMemoryPolicyErrorCheck $location = "North Central US" # Updating Cache - Assert-ThrowsContains {New-AzureRMRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -MaxMemoryPolicy AllKeysRandom} "The 'MaxMemoryPolicy' setting has been deprecated" + Assert-ThrowsContains {New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -MaxMemoryPolicy AllKeysRandom} "The 'MaxMemoryPolicy' setting has been deprecated" +} + +<# +.SYNOPSIS +Tests redis cache clustering. +#> +function Test-RedisCacheClustering +{ + # Setup + # resource group should exists + $resourceGroupName = "MyResourceGroup" + $cacheName = "powershellcluster" + $location = "East US" + + # Creating Cache + $cacheCreated = New-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Location $location -Size 6GB -Sku Premium -ShardCount 3 + Assert-AreEqual "Microsoft.Cache/Redis" $cacheCreated.Type + Assert-AreEqual $resourceGroupName $cacheCreated.ResourceGroupName + + Assert-AreEqual 6379 $cacheCreated.Port + Assert-AreEqual 6380 $cacheCreated.SslPort + Assert-AreEqual "creating" $cacheCreated.ProvisioningState + Assert-AreEqual "6GB" $cacheCreated.Size + Assert-AreEqual "Premium" $cacheCreated.Sku + Assert-AreEqual 3 $cacheCreated.ShardCount + + Assert-NotNull $cacheCreated.PrimaryKey "PrimaryKey do not exists" + Assert-NotNull $cacheCreated.SecondaryKey "SecondaryKey do not exists" + + # In loop to check if cache exists + for ($i = 0; $i -le 60; $i++) + { + [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000) + $cacheGet = Get-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName + if ([string]::Compare("succeeded", $cacheGet[0].ProvisioningState, $True) -eq 0) + { + Assert-AreEqual $cacheName $cacheGet[0].Name + break + } + Assert-False {$i -eq 60} "Cache is not in succeeded state even after 30 min." + } + + # Updating Cache + $cacheUpdated = Set-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"} -TenantSettings @{"some-key" = "some-value"} + + Assert-AreEqual $cacheName $cacheUpdated.Name + Assert-AreEqual "succeeded" $cacheUpdated.ProvisioningState + Assert-AreEqual "6GB" $cacheCreated.Size + Assert-AreEqual "Premium" $cacheCreated.Sku + Assert-AreEqual 3 $cacheCreated.ShardCount + Assert-AreEqual "allkeys-lru" $cacheUpdated.RedisConfiguration.Item("maxmemory-policy") + Assert-AreEqual "some-value" $cacheUpdated.TenantSettings.Item("some-key") + + Assert-NotNull $cacheUpdated.PrimaryKey "PrimaryKey do not exists" + Assert-NotNull $cacheUpdated.SecondaryKey "SecondaryKey do not exists" + + # List all cache in resource group + $cachesInResourceGroup = Get-AzureRmRedisCache -ResourceGroupName $resourceGroupName + Assert-True {$cachesInResourceGroup.Count -ge 1} + + $found = 0 + for ($i = 0; $i -lt $cachesInResourceGroup.Count; $i++) + { + if ($cachesInResourceGroup[$i].Name -eq $cacheName) + { + $found = 1 + Assert-AreEqual $location $cachesInResourceGroup[$i].Location + Assert-AreEqual "Microsoft.Cache/Redis" $cachesInResourceGroup[$i].Type + Assert-AreEqual $resourceGroupName $cachesInResourceGroup[$i].ResourceGroupName + + Assert-AreEqual 6379 $cachesInResourceGroup[$i].Port + Assert-AreEqual 6380 $cachesInResourceGroup[$i].SslPort + Assert-AreEqual "succeeded" $cachesInResourceGroup[$i].ProvisioningState + Assert-AreEqual "6GB" $cacheCreated.Size + Assert-AreEqual "Premium" $cacheCreated.Sku + Assert-AreEqual 3 $cacheCreated.ShardCount + break + } + } + Assert-True {$found -eq 1} "Cache created earlier is not found." + + # List all cache in subscription + $cachesInSubscription = Get-AzureRmRedisCache + Assert-True {$cachesInSubscription.Count -ge 1} + Assert-True {$cachesInSubscription.Count -ge $cachesInResourceGroup.Count} + + $found = 0 + for ($i = 0; $i -lt $cachesInSubscription.Count; $i++) + { + if ($cachesInSubscription[$i].Name -eq $cacheName) + { + $found = 1 + Assert-AreEqual $location $cachesInSubscription[$i].Location + Assert-AreEqual "Microsoft.Cache/Redis" $cachesInSubscription[$i].Type + Assert-AreEqual $resourceGroupName $cachesInSubscription[$i].ResourceGroupName + + Assert-AreEqual 6379 $cachesInSubscription[$i].Port + Assert-AreEqual 6380 $cachesInSubscription[$i].SslPort + Assert-AreEqual "succeeded" $cachesInSubscription[$i].ProvisioningState + Assert-AreEqual "6GB" $cacheCreated.Size + Assert-AreEqual "Premium" $cacheCreated.Sku + Assert-AreEqual 3 $cacheCreated.ShardCount + break + } + } + Assert-True {$found -eq 1} "Cache created earlier is not found." + + # Get cache keys + $cacheKeysBeforeUpdate = Get-AzureRmRedisCacheKey -ResourceGroupName $resourceGroupName -Name $cacheName + Assert-NotNull $cacheKeysBeforeUpdate.PrimaryKey "PrimaryKey do not exists" + Assert-NotNull $cacheKeysBeforeUpdate.SecondaryKey "SecondaryKey do not exists" + + # Regenerate primary key + $cacheKeysAfterUpdate = New-AzureRmRedisCacheKey -ResourceGroupName $resourceGroupName -Name $cacheName -KeyType Primary -Force + Assert-AreEqual $cacheKeysBeforeUpdate.SecondaryKey $cacheKeysAfterUpdate.SecondaryKey + Assert-AreNotEqual $cacheKeysBeforeUpdate.PrimaryKey $cacheKeysAfterUpdate.PrimaryKey + + # Delete cache + Assert-True {Remove-AzureRmRedisCache -ResourceGroupName $resourceGroupName -Name $cacheName -Force -PassThru} "Remove cache failed." } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json index 0ea8b37b425b..8c55a277ab44 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "a528d84d-0a14-4df7-bef2-15543e4a9944" + "26d341ae-4998-41d7-a169-983df660d320" ], "x-ms-correlation-request-id": [ - "a528d84d-0a14-4df7-bef2-15543e4a9944" + "26d341ae-4998-41d7-a169-983df660d320" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194729Z:a528d84d-0a14-4df7-bef2-15543e4a9944" + "CENTRALUS:20151016T004042Z:26d341ae-4998-41d7-a169-983df660d320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:28 GMT" + "Fri, 16 Oct 2015 00:40:42 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,28 +73,28 @@ "no-cache" ], "x-ms-request-id": [ - "331025cf-644c-459f-8c1f-e265f1b76370" + "7f82dcc4-2f6d-42d5-a6d0-d401f3f3c9e5" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14897" ], "x-ms-correlation-request-id": [ - "5bdd5edc-e250-44ef-8dc4-2241ca44ddd8" + "ab1ba39e-753b-4adc-919c-64be70a63480" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194803Z:5bdd5edc-e250-44ef-8dc4-2241ca44ddd8" + "CENTRALUS:20151016T004114Z:ab1ba39e-753b-4adc-919c-64be70a63480" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:48:03 GMT" + "Fri, 16 Oct 2015 00:41:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -103,8 +103,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,10 +112,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,28 +127,28 @@ "no-cache" ], "x-ms-request-id": [ - "af0aafc4-5bef-479a-9488-252833210f82" + "10baea49-305a-422c-b2dc-be7fab3d5aa2" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14896" ], "x-ms-correlation-request-id": [ - "6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd" + "99adc15a-697d-488c-9b26-39cd37ae9f43" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194834Z:6bc33a8d-0d1f-4c56-a084-ff02ce5ce8cd" + "CENTRALUS:20151016T004144Z:99adc15a-697d-488c-9b26-39cd37ae9f43" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:48:34 GMT" + "Fri, 16 Oct 2015 00:41:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -157,8 +157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -166,10 +166,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,28 +181,28 @@ "no-cache" ], "x-ms-request-id": [ - "e3cb1023-f24f-4845-a8eb-abcb1a1fb137" + "b5c76357-dbdc-4afc-bf58-630517c119ac" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14895" ], "x-ms-correlation-request-id": [ - "384c4a62-2d14-45c6-abb0-e4b5f365a6f8" + "cd9313a2-2715-4e12-b911-6948016b0173" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194904Z:384c4a62-2d14-45c6-abb0-e4b5f365a6f8" + "CENTRALUS:20151016T004214Z:cd9313a2-2715-4e12-b911-6948016b0173" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:49:03 GMT" + "Fri, 16 Oct 2015 00:42:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -211,8 +211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,10 +220,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,28 +235,28 @@ "no-cache" ], "x-ms-request-id": [ - "37d1fc2e-4bbe-4794-80d1-3027ada70062" + "829f60fd-8106-45b1-94c7-1703a1ebafc6" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14894" ], "x-ms-correlation-request-id": [ - "8d3897f0-edb4-430f-a30f-1cfdf13fcc50" + "41f0d7a4-2a51-44ea-abfc-66ee659b7b5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194934Z:8d3897f0-edb4-430f-a30f-1cfdf13fcc50" + "CENTRALUS:20151016T004244Z:41f0d7a4-2a51-44ea-abfc-66ee659b7b5b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:49:33 GMT" + "Fri, 16 Oct 2015 00:42:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -265,8 +265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,10 +274,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,28 +289,28 @@ "no-cache" ], "x-ms-request-id": [ - "64244458-f898-4412-8974-c91d40a8563c" + "2439b7cd-69b7-43f8-b213-581f027f77e5" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14893" ], "x-ms-correlation-request-id": [ - "df8515c1-4590-459c-90d0-2215f6b836cf" + "4a74dd6b-28e0-41da-8738-c512c0996ae2" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195004Z:df8515c1-4590-459c-90d0-2215f6b836cf" + "CENTRALUS:20151016T004314Z:4a74dd6b-28e0-41da-8738-c512c0996ae2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:50:04 GMT" + "Fri, 16 Oct 2015 00:43:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -319,8 +319,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -328,10 +328,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,28 +343,28 @@ "no-cache" ], "x-ms-request-id": [ - "62ef6866-0984-472f-90ba-d05388061395" + "778c8d0c-230d-48b9-8106-3e29f7ed8d82" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14892" ], "x-ms-correlation-request-id": [ - "66e05dbd-4980-4803-b6f3-6db7769dd677" + "f9409a8b-5b9a-408f-8069-fbd34631d6df" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195034Z:66e05dbd-4980-4803-b6f3-6db7769dd677" + "CENTRALUS:20151016T004344Z:f9409a8b-5b9a-408f-8069-fbd34631d6df" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:50:34 GMT" + "Fri, 16 Oct 2015 00:43:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -373,8 +373,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -382,10 +382,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,28 +397,28 @@ "no-cache" ], "x-ms-request-id": [ - "2401b5e2-26b2-496a-babb-f36a5d410f4f" + "a0974c30-4a26-49c3-9de7-da5a1726702d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14890" ], "x-ms-correlation-request-id": [ - "ac3464ba-2452-44a6-861b-6803dff30866" + "a02f9c87-10a0-4b10-a19b-392b4375a42f" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195104Z:ac3464ba-2452-44a6-861b-6803dff30866" + "CENTRALUS:20151016T004415Z:a02f9c87-10a0-4b10-a19b-392b4375a42f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:51:03 GMT" + "Fri, 16 Oct 2015 00:44:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -427,8 +427,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -436,10 +436,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -451,28 +451,28 @@ "no-cache" ], "x-ms-request-id": [ - "f19d9eed-0000-4c4a-b323-b206f6a1bb97" + "da53110b-da50-432e-9946-1b2af6fd7bb7" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14889" ], "x-ms-correlation-request-id": [ - "c9620049-3f68-4d83-b1c8-c8bf08cdea2a" + "3f11a72e-32cf-4100-9571-22aeaa872661" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195134Z:c9620049-3f68-4d83-b1c8-c8bf08cdea2a" + "CENTRALUS:20151016T004445Z:3f11a72e-32cf-4100-9571-22aeaa872661" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:51:34 GMT" + "Fri, 16 Oct 2015 00:44:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,10 +490,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -505,28 +505,28 @@ "no-cache" ], "x-ms-request-id": [ - "7bb5028d-a20b-4cb4-8ed3-47bd12d7a770" + "8dd5d3d5-5619-42ec-98b6-1588600f240e" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14896" ], "x-ms-correlation-request-id": [ - "6f3eadb5-0ab3-44df-8fa6-ce88577cb01e" + "2b1839fa-8a0d-486c-9b92-8e4d8458ad5a" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195204Z:6f3eadb5-0ab3-44df-8fa6-ce88577cb01e" + "CENTRALUS:20151016T004515Z:2b1839fa-8a0d-486c-9b92-8e4d8458ad5a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:52:04 GMT" + "Fri, 16 Oct 2015 00:45:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -544,10 +544,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -559,28 +559,28 @@ "no-cache" ], "x-ms-request-id": [ - "8a3b9142-09ca-401a-988c-6456dd404c80" + "e459d498-0330-4600-bc27-0a29457edd91" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14895" ], "x-ms-correlation-request-id": [ - "ae562988-cc53-4a09-addb-2b9fe753458d" + "50fa760d-e428-48cb-b272-7f332b78e735" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195235Z:ae562988-cc53-4a09-addb-2b9fe753458d" + "CENTRALUS:20151016T004545Z:50fa760d-e428-48cb-b272-7f332b78e735" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:52:34 GMT" + "Fri, 16 Oct 2015 00:45:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -589,8 +589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598,10 +598,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,28 +613,28 @@ "no-cache" ], "x-ms-request-id": [ - "4c38b7cf-50c0-4f01-ba5c-f2a163e0e671" + "39a166ca-acce-4dde-bbf4-e2d1404e4cd2" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14894" ], "x-ms-correlation-request-id": [ - "5f2b83ef-b84c-459f-9f38-2ebca8f56009" + "bb2e15e8-fc2b-47de-a99d-7fbb8c7df341" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195305Z:5f2b83ef-b84c-459f-9f38-2ebca8f56009" + "CENTRALUS:20151016T004615Z:bb2e15e8-fc2b-47de-a99d-7fbb8c7df341" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:53:04 GMT" + "Fri, 16 Oct 2015 00:46:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -643,8 +643,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,10 +652,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,28 +667,28 @@ "no-cache" ], "x-ms-request-id": [ - "5a186fbf-b175-43f5-ae71-4fcf3c6e1640" + "e4aa3be0-96f9-4c98-804c-57e134a9514c" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14893" ], "x-ms-correlation-request-id": [ - "bea345a3-44f5-418d-908b-4509aa4d5b17" + "e6a2621d-3faa-4355-8b5c-e9eb405c8280" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195335Z:bea345a3-44f5-418d-908b-4509aa4d5b17" + "CENTRALUS:20151016T004645Z:e6a2621d-3faa-4355-8b5c-e9eb405c8280" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:53:35 GMT" + "Fri, 16 Oct 2015 00:46:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -697,8 +697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -706,10 +706,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -721,28 +721,28 @@ "no-cache" ], "x-ms-request-id": [ - "770786d5-aa46-4a7e-9edb-351e2839ceeb" + "cfec5563-fbe7-4cb2-9c9c-f88fef01cf1f" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14892" ], "x-ms-correlation-request-id": [ - "3612384b-61e8-4cc8-ab08-b9167ad754d9" + "e63fba2c-a104-4fcb-aeaf-4af5c5344d59" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195405Z:3612384b-61e8-4cc8-ab08-b9167ad754d9" + "CENTRALUS:20151016T004715Z:e63fba2c-a104-4fcb-aeaf-4af5c5344d59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:54:04 GMT" + "Fri, 16 Oct 2015 00:47:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -751,8 +751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -760,10 +760,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -775,28 +775,28 @@ "no-cache" ], "x-ms-request-id": [ - "7d70b9ed-d476-4e53-bf30-f02698defed5" + "84b99304-af65-412f-993a-0b366b562d3a" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14891" ], "x-ms-correlation-request-id": [ - "4612fbc8-7458-4457-a254-a5d101ef5e33" + "0f1f4227-6a7c-4a97-a8a7-84efc01b2986" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195435Z:4612fbc8-7458-4457-a254-a5d101ef5e33" + "CENTRALUS:20151016T004745Z:0f1f4227-6a7c-4a97-a8a7-84efc01b2986" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:54:35 GMT" + "Fri, 16 Oct 2015 00:47:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -805,8 +805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,10 +814,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -829,28 +829,28 @@ "no-cache" ], "x-ms-request-id": [ - "12b07990-36d9-49fb-9d56-da2975f06290" + "d75f46d3-f299-4650-b54b-415e62e4664f" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14890" ], "x-ms-correlation-request-id": [ - "69105d8d-570b-443d-92c6-193fc3fa5600" + "5de67c01-5868-4801-bb55-4235b9ef0099" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195505Z:69105d8d-570b-443d-92c6-193fc3fa5600" + "CENTRALUS:20151016T004815Z:5de67c01-5868-4801-bb55-4235b9ef0099" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:55:05 GMT" + "Fri, 16 Oct 2015 00:48:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +868,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,28 +883,28 @@ "no-cache" ], "x-ms-request-id": [ - "cd98a61b-682c-4246-8433-496be628fd96" + "cf870906-ad08-4dea-bfcf-39696393a418" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14889" ], "x-ms-correlation-request-id": [ - "539125ef-55c4-489d-9758-fe30d4610291" + "c3a2d19b-1eea-4406-867e-f0ae78bb5841" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195535Z:539125ef-55c4-489d-9758-fe30d4610291" + "CENTRALUS:20151016T004845Z:c3a2d19b-1eea-4406-867e-f0ae78bb5841" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:55:35 GMT" + "Fri, 16 Oct 2015 00:48:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,10 +922,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -937,28 +937,28 @@ "no-cache" ], "x-ms-request-id": [ - "f76144b1-bd7e-4bb9-a672-ccb525e581c5" + "e47ae9e9-9894-455e-973b-c56ab9021978" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14888" ], "x-ms-correlation-request-id": [ - "8b0337c3-32d0-41ab-a662-c8127b3eb666" + "fc4394c4-af8b-40da-9f38-b3f3f555632e" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195606Z:8b0337c3-32d0-41ab-a662-c8127b3eb666" + "CENTRALUS:20151016T004915Z:fc4394c4-af8b-40da-9f38-b3f3f555632e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:56:05 GMT" + "Fri, 16 Oct 2015 00:49:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -967,8 +967,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,10 +976,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -991,28 +991,28 @@ "no-cache" ], "x-ms-request-id": [ - "c60c69ca-4fbf-45ef-a1e1-cce5d49b5680" + "c01d8fa9-bdf9-4375-a932-f957b35abef8" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14887" ], "x-ms-correlation-request-id": [ - "a9e9ea15-7660-4c14-b81e-cdfedf08b50d" + "b57c726c-9251-4c72-914b-f4c69c1017ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195636Z:a9e9ea15-7660-4c14-b81e-cdfedf08b50d" + "CENTRALUS:20151016T004946Z:b57c726c-9251-4c72-914b-f4c69c1017ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:56:35 GMT" + "Fri, 16 Oct 2015 00:49:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1021,8 +1021,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,10 +1030,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,28 +1045,28 @@ "no-cache" ], "x-ms-request-id": [ - "d2d6b87d-7494-4fbd-a8bd-780df1de108e" + "9061bafb-3191-4138-9d26-75e69bfc739a" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14885" ], "x-ms-correlation-request-id": [ - "b54c17f6-9e1f-4fa7-8c1a-3c1adde48442" + "b341f43d-ec11-4ad5-a962-d3956282fbaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195706Z:b54c17f6-9e1f-4fa7-8c1a-3c1adde48442" + "CENTRALUS:20151016T005016Z:b341f43d-ec11-4ad5-a962-d3956282fbaf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:57:06 GMT" + "Fri, 16 Oct 2015 00:50:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1075,8 +1075,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1084,10 +1084,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,28 +1099,28 @@ "no-cache" ], "x-ms-request-id": [ - "5ffa91dd-c494-4765-8607-5ae5d84ba5dd" + "8be5327e-d3dc-4963-abc2-318a58d23a2c" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14884" ], "x-ms-correlation-request-id": [ - "2b062a3b-4e70-47e1-bfa9-c774a647a3fb" + "b0526ae2-b79b-418f-b01b-e1e3a064fea9" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195736Z:2b062a3b-4e70-47e1-bfa9-c774a647a3fb" + "CENTRALUS:20151016T005046Z:b0526ae2-b79b-418f-b01b-e1e3a064fea9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:57:35 GMT" + "Fri, 16 Oct 2015 00:50:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1129,8 +1129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1138,10 +1138,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,28 +1153,28 @@ "no-cache" ], "x-ms-request-id": [ - "0aa32669-246d-428b-8699-67078479213a" + "f01d3bff-6f2a-44f4-8c5b-64d623b5e3db" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14883" ], "x-ms-correlation-request-id": [ - "efd2bb05-7fba-40fc-8608-dfd83148ed3f" + "95a3cdad-6550-40ec-864b-a424ea59f512" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195806Z:efd2bb05-7fba-40fc-8608-dfd83148ed3f" + "CENTRALUS:20151016T005116Z:95a3cdad-6550-40ec-864b-a424ea59f512" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:58:06 GMT" + "Fri, 16 Oct 2015 00:51:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1183,8 +1183,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1192,10 +1192,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,28 +1207,28 @@ "no-cache" ], "x-ms-request-id": [ - "71333de1-59e2-45cc-92a3-4acf66ffb206" + "02c0b215-f8e1-46cf-bc79-199d4443f03f" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14882" ], "x-ms-correlation-request-id": [ - "db4c2a05-5e30-4367-bbd2-616dbd9b020b" + "d9876bdb-fbb7-461b-a8da-fe5b3bb7bfef" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195836Z:db4c2a05-5e30-4367-bbd2-616dbd9b020b" + "CENTRALUS:20151016T005146Z:d9876bdb-fbb7-461b-a8da-fe5b3bb7bfef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:58:35 GMT" + "Fri, 16 Oct 2015 00:51:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1237,8 +1237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,10 +1246,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1261,28 +1261,28 @@ "no-cache" ], "x-ms-request-id": [ - "8f546e5b-4489-440a-818e-f220d39f3cbd" + "5ad89155-f6b2-453e-bb95-030053cb0c32" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14881" ], "x-ms-correlation-request-id": [ - "0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce" + "59e27e35-8f0f-4e0d-b6ec-0b5923c8e4e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T195906Z:0ffa583c-d2a7-4ffa-8d00-8f58fe9121ce" + "CENTRALUS:20151016T005146Z:59e27e35-8f0f-4e0d-b6ec-0b5923c8e4e1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:59:06 GMT" + "Fri, 16 Oct 2015 00:51:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1291,187 +1291,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "560" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f383d42a-49e1-41ac-9866-ec68cbacf00d" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" - ], - "x-ms-correlation-request-id": [ - "7bbf369e-393f-4def-8c26-5d7200a9459a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T195937Z:7bbf369e-393f-4def-8c26-5d7200a9459a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 19:59:36 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "561" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0368ccec-db5e-4a45-9aa8-6ceb901f0b31" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" - ], - "x-ms-correlation-request-id": [ - "ba1112d4-433d-461f-808a-a301199b9c46" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T200007Z:ba1112d4-433d-461f-808a-a301199b9c46" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:00:07 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "561" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2930e9ab-3f94-459b-bed9-14871d7a8717" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" - ], - "x-ms-correlation-request-id": [ - "d78f54e6-f0a9-413f-a254-06e48668e81e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T200007Z:d78f54e6-f0a9-413f-a254-06e48668e81e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:00:07 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "194" + "169" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n },\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "679" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1483,31 +1321,31 @@ "no-cache" ], "x-ms-request-id": [ - "be941d85-69e4-4d59-90fb-0cbac319c604" + "9641388d-bc2f-4df1-be26-fcd61fdcf535" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "dbd87cc6-448f-44eb-b4d1-57775eb1b9db" + "2494cc75-1ebc-48eb-b323-57bd5e1a12ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194733Z:dbd87cc6-448f-44eb-b4d1-57775eb1b9db" + "CENTRALUS:20151016T004044Z:2494cc75-1ebc-48eb-b323-57bd5e1a12ee" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:33 GMT" + "Fri, 16 Oct 2015 00:40:43 GMT" ], "Location": [ - "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest" + "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1516,25 +1354,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "303" + "278" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n },\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n },\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "712" + "723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1546,28 +1384,28 @@ "no-cache" ], "x-ms-request-id": [ - "ea67415d-2327-4e77-b32c-c080bf36c1e5" + "ed9b4a63-9509-4b87-bedb-5dcc91190b99" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "0620eb62-3ecb-4a28-8c3a-22d3586f7419" + "fe85a1e1-8295-4ad7-9d4f-7df88f1b792d" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200009Z:0620eb62-3ecb-4a28-8c3a-22d3586f7419" + "CENTRALUS:20151016T005147Z:fe85a1e1-8295-4ad7-9d4f-7df88f1b792d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:09 GMT" + "Fri, 16 Oct 2015 00:51:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1576,8 +1414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,10 +1423,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "605" + "1197" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1600,28 +1438,28 @@ "no-cache" ], "x-ms-request-id": [ - "97562e48-efac-444b-a1a0-99f0cf3f61d7" + "0f9d67e8-538a-4814-b3ce-7613ea40ce3c" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14880" ], "x-ms-correlation-request-id": [ - "1340a192-087b-4633-a25f-18d6fa5a2794" + "574f9f9f-afbe-4eff-b874-df96471c2028" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200009Z:1340a192-087b-4633-a25f-18d6fa5a2794" + "CENTRALUS:20151016T005147Z:574f9f9f-afbe-4eff-b874-df96471c2028" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:09 GMT" + "Fri, 16 Oct 2015 00:51:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1630,8 +1468,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/providers/Microsoft.Cache/Redis/?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache/Redis/?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1639,10 +1477,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/redisperfnortheurop\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"redisperfnortheurop\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxMemoryPolicy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfnortheurop.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/mgmredislog\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"mgmredislog\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"mgmredislog.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/stresstesting/providers/Microsoft.Cache/Redis/rstressc0bncus\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"rstressc0bncus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc0bncus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/redisperfprod/providers/Microsoft.Cache/Redis/redisperf2a5\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"redisperf2a5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperf2a5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/devconcache\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"devconcache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"devconcache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/demiscache\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"demiscache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"demiscache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/norepropls\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"norepropls\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"norepropls.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/connetiontest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"connetiontest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"connetiontest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/japetest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"japetest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"japetest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timsanitych129\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"timsanitych129\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timsanitych129.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pfstress01\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"pfstress01\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pfstress01.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/fixedit\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"fixedit\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"100\",\r\n \"maxmemory-reserved\": \"100\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"fixedit.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/throughgallery\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"throughgallery\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"throughgallery.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/stillworkinga\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"stillworkinga\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"stillworkinga.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak1gbtest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak1gbtest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak1gbtest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak2-5gbbsctest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak2-5gbbsctest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak2-5gbbsctest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepak2-5stdtest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepak2-5stdtest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepak2-5stdtest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakv53gbstd\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"deepakv53gbstd\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv53gbstd.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavrestest2\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"pallavrestest2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"150\",\r\n \"maxmemory-reserved\": \"150\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavrestest2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/testdv5\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"testdv5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"testdv5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/namespacecheck81\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"namespacecheck81\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"namespacecheck81.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btostestprod\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"btostestprod\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"btostestprod.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/productquerycache\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"productquerycache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"productquerycache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/customerquerycache\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"customerquerycache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-ttl\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"customerquerycache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/cacheinactive1\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"cacheinactive1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"cacheinactive1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc1bscus\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"rstressc1bscus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc1bscus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/prodscusafteroll\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"prodscusafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"prodscusafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakv53gbsouthus\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"deepakv53gbsouthus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv53gbsouthus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redcentralus\",\r\n \"location\": \"Central US\",\r\n \"name\": \"redcentralus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redcentralus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6bwe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc6bwe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6bwe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc5swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc5swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 5\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc5swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"rstressc6swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/re2ec1swe\",\r\n \"location\": \"West Europe\",\r\n \"name\": \"re2ec1swe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"re2ec1swe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/monitoringtestprod/providers/Microsoft.Cache/Redis/monitoringtestprod\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"monitoringtestprod\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"monitoringtestprod.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/deepakv1gbstd\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"deepakv1gbstd\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"noeviction\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakv1gbstd.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/redisperfne\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"redisperfne\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfne.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/depakv250mbbasic\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"depakv250mbbasic\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"depakv250mbbasic.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc5bne\",\r\n \"location\": \"North Europe\",\r\n \"name\": \"rstressc5bne\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 5\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc5bne.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/azurefriday\",\r\n \"location\": \"West US\",\r\n \"name\": \"azurefriday\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"azurefriday.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/azurefriday2\",\r\n \"location\": \"West US\",\r\n \"name\": \"azurefriday2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"azurefriday2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc4bwus\",\r\n \"location\": \"West US\",\r\n \"name\": \"rstressc4bwus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc4bwus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/insightstest\",\r\n \"location\": \"West US\",\r\n \"name\": \"insightstest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"insightstest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfancli0805Try5\",\r\n \"location\": \"West US\",\r\n \"name\": \"alfancli0805Try5\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfancli0805Try5.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG4843/providers/Microsoft.Cache/Redis/xplatTestCache6151\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache6151\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache6151.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG4843/providers/Microsoft.Cache/Redis/xplatTestCache4763\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4763\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4763.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG2075/providers/Microsoft.Cache/Redis/xplatTestCache4107\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4107\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4107.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG2075/providers/Microsoft.Cache/Redis/xplatTestCache9959\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache9959\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache9959.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG8656/providers/Microsoft.Cache/Redis/xplatTestCache5332\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache5332\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache5332.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG8656/providers/Microsoft.Cache/Redis/xplatTestCache7409\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache7409\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache7409.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1729/providers/Microsoft.Cache/Redis/xplatTestCache2835\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache2835\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache2835.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1729/providers/Microsoft.Cache/Redis/xplatTestCache1530\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1530\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1530.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1868/providers/Microsoft.Cache/Redis/xplatTestCache8279\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache8279\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache8279.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG1868/providers/Microsoft.Cache/Redis/xplatTestCache3131\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3131\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3131.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG7781/providers/Microsoft.Cache/Redis/xplatTestCache1687\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1687\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1687.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG7781/providers/Microsoft.Cache/Redis/xplatTestCache2876\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache2876\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache2876.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG3269/providers/Microsoft.Cache/Redis/xplatTestCache9660\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache9660\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache9660.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG3269/providers/Microsoft.Cache/Redis/xplatTestCache1504\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache1504\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache1504.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG5807/providers/Microsoft.Cache/Redis/xplatTestCache3016\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3016\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3016.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG5807/providers/Microsoft.Cache/Redis/xplatTestCache6730\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache6730\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache6730.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG9698/providers/Microsoft.Cache/Redis/xplatTestCache4344\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache4344\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache4344.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/xplatTestCacheRG9698/providers/Microsoft.Cache/Redis/xplatTestCache3854\",\r\n \"location\": \"West US\",\r\n \"name\": \"xplatTestCache3854\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"xplatTestCache3854.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfanssltry4\",\r\n \"location\": \"West US\",\r\n \"name\": \"alfanssltry4\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfanssltry4.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakvC6\",\r\n \"location\": \"West US\",\r\n \"name\": \"deepakvC6\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakvC6.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btos\",\r\n \"location\": \"West US\",\r\n \"name\": \"btos\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"btos.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/btos1\",\r\n \"location\": \"West US\",\r\n \"name\": \"btos1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"btos1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/myretwis\",\r\n \"location\": \"East US\",\r\n \"name\": \"myretwis\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"myretwis.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc2beus\",\r\n \"location\": \"East US\",\r\n \"name\": \"rstressc2beus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc2beus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Default-Web-EastUS/providers/Microsoft.Cache/Redis/redeastus\",\r\n \"location\": \"East US\",\r\n \"name\": \"redeastus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeastus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakveus\",\r\n \"location\": \"East US\",\r\n \"name\": \"deepakveus\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakveus.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timbasiceusjul22\",\r\n \"location\": \"East US\",\r\n \"name\": \"timbasiceusjul22\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timbasiceusjul22.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timstdeusjul22\",\r\n \"location\": \"East US\",\r\n \"name\": \"timstdeusjul22\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timstdeusjul22.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusduringroll\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusduringroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusduringroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusafterroll\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusafterroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusafterroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eusbeforeall\",\r\n \"location\": \"East US\",\r\n \"name\": \"eusbeforeall\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eusbeforeall.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc3beus2\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"rstressc3beus2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 3\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc3beus2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redeastus2\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"redeastus2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeastus2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/eus2afteroll\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"eus2afteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"eus2afteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/rpcheck94pp\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"rpcheck94pp\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rpcheck94pp.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavpjape1\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjape1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjape1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Default-Storage-JapanEast/providers/Microsoft.Cache/Redis/pallavpjape3\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjape3\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjape3.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc0sje\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"rstressc0sje\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc0sje.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavpjapefinal\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"pallavpjapefinal\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavpjapefinal.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/hpcluster0p1\",\r\n \"location\": \"Japan East\",\r\n \"name\": \"hpcluster0p1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"hpcluster0p1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/CacheQueryDemo/providers/Microsoft.Cache/Redis/redisperfjpnwest\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"redisperfjpnwest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfjpnwest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc1sjw\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"rstressc1sjw\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc1sjw.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/deepakvc1\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"deepakvc1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"deepakvc1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/redisperfbrazilsouth\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"redisperfbrazilsouth\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfbrazilsouth.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc6smisc\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"rstressc6smisc\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 6\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc6smisc.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redbras\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"redbras\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redbras.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/csmmanifest\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"csmmanifest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"csmmanifest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavrestest\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"pallavrestest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavrestest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/pallavbrazilnew\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"pallavbrazilnew\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-delta\": \"300\",\r\n \"maxmemory-reserved\": \"300\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"pallavbrazilnew.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/brasafteroll\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"brasafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"brasafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/rstressc4sbs\",\r\n \"location\": \"Brazil South\",\r\n \"name\": \"rstressc4sbs\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 4\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc4sbs.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/deepakv1gbstd/providers/Microsoft.Cache/Redis/redisperfseasia\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"redisperfseasia\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redisperfseasia.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc3ssea\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"rstressc3ssea\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 3\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc3ssea.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/alfantest8641/providers/Microsoft.Cache/Redis/rstressc2sea\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"rstressc2sea\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"rstressc2sea.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redeasia\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"redeasia\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"redeasia.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/easiafteroll\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"easiafteroll\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"easiafteroll.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/easiadrcache\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"easiadrcache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"easiadrcache.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/newcacheafterreboot\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"newcacheafterreboot\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"newcacheafterreboot.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfancacheafterreboot\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"alfancacheafterreboot\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfancacheafterreboot.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/sqlfailure1\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"sqlfailure1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"sqlfailure1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/sqlfailure2\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"sqlfailure2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"2.8\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"sqlfailure2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/alfanafteridentinc\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"alfanafteridentinc\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"alfanafteridentinc.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/timsanity3ase\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"timsanity3ase\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"timsanity3ase.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/redausse\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"redausse\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"volatile-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"redausse.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/insightaussecheck\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"insightaussecheck\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"insightaussecheck.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/ausseaftecert\",\r\n \"location\": \"Australia Southeast\",\r\n \"name\": \"ausseaftecert\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"ausseaftecert.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/centralindiatest\",\r\n \"location\": \"Central India\",\r\n \"name\": \"centralindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"centralindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/westindiatest\",\r\n \"location\": \"West India\",\r\n \"name\": \"westindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"westindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/afterdr\",\r\n \"location\": \"South India\",\r\n \"name\": \"afterdr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"afterdr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/afterbcdr\",\r\n \"location\": \"South India\",\r\n \"name\": \"afterbcdr\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"afterbcdr.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/southindiatest\",\r\n \"location\": \"South India\",\r\n \"name\": \"southindiatest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"southindiatest.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/AAA/providers/Microsoft.Cache/Redis/indiatest2\",\r\n \"location\": \"South India\",\r\n \"name\": \"indiatest2\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {},\r\n \"accessKeys\": null,\r\n \"hostName\": \"indiatest2.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "58236" + "1805" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,52 +1491,39 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "fd1394e2-d666-4eda-b1cb-8f6062bca510", - "55569236-efd5-436d-8fd2-c63260f1b020", - "4b435941-d902-4d4f-b8e7-1a71df5d46ae", - "788ebb11-b51c-41df-9034-2e364db14740", - "8fb74979-7657-4a43-8009-8ac765dac681", - "418d817a-ddbd-4942-b2e7-89b5ad711bb4", - "6a29fe79-6dc7-47b8-a49d-0b4bc0fe0c21", - "a5f625ff-5146-444b-bee1-8012a6fff83e", - "aeba2743-1d7b-4254-8920-f0bfe54c0c48", - "f542fb9b-8184-4d53-8d30-64a338607296", - "fd6a6984-f0d2-475b-b839-70816ab725b1", - "a10236a5-255b-43f9-8d17-3dbed47e5f08", - "aa2de619-ec31-414b-807d-ceddc17e8330", - "c690f8f1-1dc5-439f-bff2-3a85d9c89e45", - "352b8b29-500e-4b06-948b-c659f28ae800", - "bee6b75b-5d2f-4ebf-967b-9dbdfb2e377b", - "a2ac240c-cd98-4786-8c1d-4a044533b30a" + "x-ms-request-id": [ + "1b2bef01-c91a-468f-a5b4-bf1e5aaf6534" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "x-rp-server-mvid": [ + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], - "x-ms-request-id": [ - "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" ], "x-ms-correlation-request-id": [ - "967b231f-9490-43f9-b8c1-7ff2b0bfbe7c" + "aa880de6-7eef-49a6-9a4d-c4508ee193be" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200011Z:967b231f-9490-43f9-b8c1-7ff2b0bfbe7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151016T005147Z:aa880de6-7eef-49a6-9a4d-c4508ee193be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:11 GMT" + "Fri, 16 Oct 2015 00:51:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1706,7 +1531,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"gz+UP8N2i0KYtJfYBgAs0xGtTKpbFFD9Vx0OMEG2ij0=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"S8SSBuALdwqDXEi1rIdyKw/opSa5OJAwgrMd1sxZSYg=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -1721,28 +1546,28 @@ "no-cache" ], "x-ms-request-id": [ - "ccc3b4d5-940c-4f5b-ab0f-f00e22e957a9" + "f1c24078-e225-460f-b016-99322e85f5c9" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "8ce9298d-03cb-45ff-ab93-4ce7895a5d2b" + "327601c9-ee78-4063-b55a-56cd14eb2ad6" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200011Z:8ce9298d-03cb-45ff-ab93-4ce7895a5d2b" + "CENTRALUS:20151016T005147Z:327601c9-ee78-4063-b55a-56cd14eb2ad6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:11 GMT" + "Fri, 16 Oct 2015 00:51:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1751,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1760,7 +1585,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"oNSQie9NaKfKMfkvBVrMYD+Q5B8u4NEzFa9RPJIiQ18=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -1775,28 +1600,28 @@ "no-cache" ], "x-ms-request-id": [ - "1e5f3fe2-bb24-4e16-bb18-32cde563b785" + "1be99799-fcbf-41e8-a6c3-34aa3a6f24ba" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "7ea5d329-d3a7-4cca-9b50-e420b527768d" + "6b1d403d-36c2-40ce-81ff-73e1088e6fd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200013Z:7ea5d329-d3a7-4cca-9b50-e420b527768d" + "CENTRALUS:20151016T005148Z:6b1d403d-36c2-40ce-81ff-73e1088e6fd6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:13 GMT" + "Fri, 16 Oct 2015 00:51:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1805,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wMy0wMQ==", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest/regenerateKey?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -1820,7 +1645,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"LzH0IO4zPLjnwrVLDRnXwdE+dliuQWpqEsWbjIEEOfw=\",\r\n \"secondaryKey\": \"Tvr3TpMThyXEY7lsmF2TILSFHGfgirjsQhZIhyp6D44=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"oNSQie9NaKfKMfkvBVrMYD+Q5B8u4NEzFa9RPJIiQ18=\",\r\n \"secondaryKey\": \"g/+vL1Qoig+yfuYeAjQUxcxyG/qzfIzORiiIJviOuss=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -1835,28 +1660,28 @@ "no-cache" ], "x-ms-request-id": [ - "820d899c-0afa-4c93-a498-70d9e81d0b03" + "bd270bfb-907b-400d-bbce-4cc7a062bda8" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "b8153574-6b71-49cc-97ad-62608203a29b" + "201d29ef-655b-4157-8c65-cccd166d37dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200013Z:b8153574-6b71-49cc-97ad-62608203a29b" + "CENTRALUS:20151016T005148Z:201d29ef-655b-4157-8c65-cccd166d37dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:13 GMT" + "Fri, 16 Oct 2015 00:51:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1865,8 +1690,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1886,28 +1711,28 @@ "no-cache" ], "x-ms-request-id": [ - "8d12623c-1a31-4613-8616-e9435a67ac85" + "7b923bae-e988-4364-8857-881cede8a1f1" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa" + "23158eaf-5443-4119-8a8a-cdf8ebceb749" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200015Z:0aeffdc3-1cf7-4616-ae2c-3cbca96bf2aa" + "CENTRALUS:20151016T005149Z:23158eaf-5443-4119-8a8a-cdf8ebceb749" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:14 GMT" + "Fri, 16 Oct 2015 00:51:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1918,6 +1743,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b" + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json new file mode 100644 index 000000000000..d64ec20aa2ff --- /dev/null +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json @@ -0,0 +1,1690 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/powershellcluster' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4f0b54fb-f121-4cf7-a717-7130d8589d1f" + ], + "x-ms-correlation-request-id": [ + "4f0b54fb-f121-4cf7-a717-7130d8589d1f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003000Z:4f0b54fb-f121-4cf7-a717-7130d8589d1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:30:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0671efd-f006-4227-b8c6-4248d4bbfbc1" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "756b467a-f1c9-4f19-b920-3c626ebeec8e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003032Z:756b467a-f1c9-4f19-b920-3c626ebeec8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:30:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8b872c24-167c-434d-b6b6-6f5b04a2f5ec" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "250a8882-c2ef-4e54-82c6-36bc47a9375c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003102Z:250a8882-c2ef-4e54-82c6-36bc47a9375c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:31:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfd6727f-0565-4be2-835a-e5834647951b" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "a73f6291-6cb7-498a-aeda-f362f90e8095" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003132Z:a73f6291-6cb7-498a-aeda-f362f90e8095" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:31:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1dfc0966-68a1-4293-8808-fcdcd10d1906" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "03782f40-67e5-4325-bd16-59dd88d58713" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003202Z:03782f40-67e5-4325-bd16-59dd88d58713" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:32:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01914b1b-c7ee-4643-bd78-fde22b9f2045" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "18751668-53a4-40a6-8372-0eb9c2deace8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003233Z:18751668-53a4-40a6-8372-0eb9c2deace8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:32:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0aca1624-67be-4463-9bd9-7b6d7d0a61ea" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "f0fd31f6-0ad8-495e-b617-c49ef62f130d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003303Z:f0fd31f6-0ad8-495e-b617-c49ef62f130d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:33:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f4bed2-514d-405f-98ba-e4a44aa69a1c" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "82c46258-8d61-478c-8a1b-20b7a88877c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003333Z:82c46258-8d61-478c-8a1b-20b7a88877c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:33:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "203d091b-edc6-4c14-82ae-40935f72079f" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "ef41bca1-1180-4815-b35f-71781b2ba243" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003403Z:ef41bca1-1180-4815-b35f-71781b2ba243" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:34:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fe42efa-af4a-42f3-86a6-83fe2e8151e1" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "554b8580-d246-46a4-ac18-0ca14fbd963b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003433Z:554b8580-d246-46a4-ac18-0ca14fbd963b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:34:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60da9ebb-1655-4bcc-a184-a5835d2e7f25" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "9823aaa7-b784-4b10-bcf4-5da055038874" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003503Z:9823aaa7-b784-4b10-bcf4-5da055038874" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:35:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "82643daf-beb1-42ca-9fa3-3a241c4273b8" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "6331c50c-4e6e-4f09-a209-93ac997eb8e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003533Z:6331c50c-4e6e-4f09-a209-93ac997eb8e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:35:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45d7c51b-c21e-4f46-96d5-446a0d3102d1" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "4a05d4f3-48fc-46f8-ad7f-64d2949bd948" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003603Z:4a05d4f3-48fc-46f8-ad7f-64d2949bd948" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:36:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a6b135d-914f-4a86-a153-56b64eb00559" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "2d02b6d3-4fe7-486d-ae5e-e40af71ed993" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003634Z:2d02b6d3-4fe7-486d-ae5e-e40af71ed993" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:36:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b149f6f1-a029-4116-84e3-61f10aad9461" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "4d5bce19-e64a-47c9-b2f2-b12c8e21083d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003704Z:4d5bce19-e64a-47c9-b2f2-b12c8e21083d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:37:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bf8bec3-2e86-45fa-b715-dbb9df04f148" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "5299de70-b6ac-4082-97e0-c05d7ff8e391" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003734Z:5299de70-b6ac-4082-97e0-c05d7ff8e391" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:37:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "739a938d-2e27-42e2-9b86-63ceae033462" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "07d3ec48-49a0-4c18-8733-277bebb0bc3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003804Z:07d3ec48-49a0-4c18-8733-277bebb0bc3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:38:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0ddbd45-1b09-488c-9bc6-64f0f3183021" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "c7959502-efd0-4c72-9a89-c3dcb5ea5ad1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003834Z:c7959502-efd0-4c72-9a89-c3dcb5ea5ad1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:38:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc0131ad-a91b-4ad7-b29e-853711a2c3b8" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "69c4ac6a-30e8-4ebb-8be3-a8261bb53220" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003904Z:69c4ac6a-30e8-4ebb-8be3-a8261bb53220" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:39:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b15f9dbf-4950-4e45-9c1a-078a43605364" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "b06acfaf-ddf1-4850-8625-a8df3812a226" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003934Z:b06acfaf-ddf1-4850-8625-a8df3812a226" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:39:34 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b850dd0f-506a-49c3-8501-a1a978e03a22" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "e57efbee-77e8-4cfb-ae26-25864d59ec8e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004005Z:e57efbee-77e8-4cfb-ae26-25864d59ec8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cdb594aa-d1ac-4fd0-a351-9c69d2bd4683" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "8abce0eb-d894-42a2-9105-4a65c09a5ea1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004035Z:8abce0eb-d894-42a2-9105-4a65c09a5ea1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a61d988e-77be-4d6b-bc13-27f8f1007df6" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "b8432340-14e8-426e-9dd1-4a6b3869d774" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004035Z:b8432340-14e8-426e-9dd1-4a6b3869d774" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"shardCount\": 3\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "181" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n },\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "708" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc7850fd-e366-4d05-a35b-6651fd51056a" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "afdbff3c-2070-4cf6-a70c-4ca556b9a694" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T003002Z:afdbff3c-2070-4cf6-a70c-4ca556b9a694" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:30:02 GMT" + ], + "Location": [ + "https://df-rp-eus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n }\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "302" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n },\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "785" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d20d827-3b3a-421d-9342-8c50c7955f29" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ce86128e-315e-482a-b844-d26a45048c04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004037Z:ce86128e-315e-482a-b844-d26a45048c04" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:36 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzLz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "ea36f748-b030-4c70-88d5-8e112d82f7e4", + "c638efca-db72-4ef4-8562-e484f1886b13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-request-id": [ + "2587d8c2-c344-4ea8-abae-136524ae74b6" + ], + "x-ms-correlation-request-id": [ + "2587d8c2-c344-4ea8-abae-136524ae74b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004037Z:2587d8c2-c344-4ea8-abae-136524ae74b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache/Redis/?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster\",\r\n \"location\": \"East US\",\r\n \"name\": \"powershellcluster\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"some-key\": \"some-value\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershellcluster.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": \"3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1867" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "13ca913b-1081-47dc-9ef3-61766c1a9423", + "7bc26007-db7d-4bd4-91a5-939a25ea306e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-request-id": [ + "be5f8453-4df9-467c-9d9e-24ba3c19ab9f" + ], + "x-ms-correlation-request-id": [ + "be5f8453-4df9-467c-9d9e-24ba3c19ab9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004037Z:be5f8453-4df9-467c-9d9e-24ba3c19ab9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"yvEh5g3wMTYn/+0uNg3JhUzWRtvMQ3+CZRQ7FphnQzc=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d26b15bd-895a-4843-a746-e90c465043c9" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "d09ebca8-a4bb-42d5-a9c8-0715305547a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004037Z:d09ebca8-a4bb-42d5-a9c8-0715305547a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"XZiwLDNRWnF5x1jvbq5q7trOaV9vbbL9BeQndKiKW3Q=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "115f652c-3f1e-4bb4-b905-c89b6629c1df" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "34bdb557-42bf-4dab-9706-19a95e74e489" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004038Z:34bdb557-42bf-4dab-9706-19a95e74e489" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster/regenerateKey?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "28" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"XZiwLDNRWnF5x1jvbq5q7trOaV9vbbL9BeQndKiKW3Q=\",\r\n \"secondaryKey\": \"Ugq0p70YD/8bY3HSOFqlq+QZ7S6jO2mYxJoyH2MS2DI=\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66d79df9-4291-4b39-9d6d-467e32b2bf42" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "3c9ab3b7-123d-4da8-b313-055a224ffd00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004038Z:3c9ab3b7-123d-4da8-b313-055a224ffd00" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershellcluster?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGxjbHVzdGVyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c553d01e-8f81-4971-bf13-65a083346c0b" + ], + "x-rp-server-mvid": [ + "e47bca3d-28dc-49ec-b74b-75ac9c7e975e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1ec4cc07-95d1-4470-bcd8-1d6812e3f366" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151016T004039Z:1ec4cc07-95d1-4470-bcd8-1d6812e3f366" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 16 Oct 2015 00:40:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" + } +} \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json new file mode 100644 index 000000000000..91c50acfcac3 --- /dev/null +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheParameterDeprecated.json @@ -0,0 +1,119 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3dhcm5pbmdUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/Redis/warningTest' under resource group 'MyResourceGroup' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "459de001-90cb-4cf5-9346-85c4224a5dcf" + ], + "x-ms-correlation-request-id": [ + "459de001-90cb-4cf5-9346-85c4224a5dcf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150916T215814Z:459de001-90cb-4cf5-9346-85c4224a5dcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 16 Sep 2015 21:58:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest?api-version=2015-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3dhcm5pbmdUZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "194" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"warningTest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\",\r\n \"maxclients\": \"256\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"fowLCNgyH8j6nQ96X2Rfu74/QDbMu31na6no+FwSszs=\",\r\n \"secondaryKey\": \"Z0P1mH9vfJ+RxBXTbSdlVBCkWZ+zwCr5i7myrfkQNqY=\"\r\n },\r\n \"hostName\": \"warningTest.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b72d4d34-016a-44c6-ba83-efc44b9e9bca" + ], + "x-rp-server-mvid": [ + "473aeb2b-6469-45d4-8133-a34c04b1eaca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f9a8e7c0-e709-416e-9573-2475b0ed4f32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150916T215815Z:f9a8e7c0-e709-416e-9573-2475b0ed4f32" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 16 Sep 2015 21:58:14 GMT" + ], + "Location": [ + "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/warningTest" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" + } +} \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json index fa6dfa1b5cd4..d5611efbc4ea 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "a4259352-f23c-4d21-aabe-de827aa95a4c" + "0126aca4-21f7-42e5-b1f2-627f79eea859" ], "x-ms-correlation-request-id": [ - "a4259352-f23c-4d21-aabe-de827aa95a4c" + "0126aca4-21f7-42e5-b1f2-627f79eea859" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200027Z:a4259352-f23c-4d21-aabe-de827aa95a4c" + "CENTRALUS:20151016T190832Z:0126aca4-21f7-42e5-b1f2-627f79eea859" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:27 GMT" + "Fri, 16 Oct 2015 19:08:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,28 +73,28 @@ "no-cache" ], "x-ms-request-id": [ - "c2a3a3b5-10dd-4002-9168-9ad39a464740" + "1b6127bb-8cd7-4f13-a7cf-640e4f0d49c0" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14981" ], "x-ms-correlation-request-id": [ - "4bc62df6-d343-4a33-82b9-dda8a79c5e3f" + "9f91518e-8f6e-4c67-8121-cfcbb77e4f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200100Z:4bc62df6-d343-4a33-82b9-dda8a79c5e3f" + "CENTRALUS:20151016T190904Z:9f91518e-8f6e-4c67-8121-cfcbb77e4f4e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:59 GMT" + "Fri, 16 Oct 2015 19:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -103,8 +103,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,10 +112,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,28 +127,28 @@ "no-cache" ], "x-ms-request-id": [ - "80235f23-ecd4-4a18-91a0-2ebab6aa2eb0" + "8bd86213-3eb8-4d40-8451-5901c47fd468" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14980" ], "x-ms-correlation-request-id": [ - "986e0db8-92ad-421a-9975-71c29652e608" + "7b01a68c-946f-4ed8-a502-a58ab85fcca3" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200130Z:986e0db8-92ad-421a-9975-71c29652e608" + "CENTRALUS:20151016T190934Z:7b01a68c-946f-4ed8-a502-a58ab85fcca3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:01:30 GMT" + "Fri, 16 Oct 2015 19:09:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -157,8 +157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -166,10 +166,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,28 +181,28 @@ "no-cache" ], "x-ms-request-id": [ - "70945f02-fb66-4a9d-aa65-67ffe3cb5b5b" + "48d4d1a7-80c3-494d-94e5-20869a419896" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14980" ], "x-ms-correlation-request-id": [ - "c3bfbd8f-6746-426a-a2fe-6431cc0a6c18" + "86e9b66d-297f-436e-ab45-f8ce2304f7da" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200200Z:c3bfbd8f-6746-426a-a2fe-6431cc0a6c18" + "CENTRALUS:20151016T191004Z:86e9b66d-297f-436e-ab45-f8ce2304f7da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:01:59 GMT" + "Fri, 16 Oct 2015 19:10:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -211,8 +211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,10 +220,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,28 +235,28 @@ "no-cache" ], "x-ms-request-id": [ - "c630733b-854d-4419-8674-0caeda06789f" + "521b6cdb-08c6-4bfc-bad7-ca9f12c5b672" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14979" ], "x-ms-correlation-request-id": [ - "5a16bebe-ff21-4341-be79-583462ded50d" + "f1cad570-37d4-49de-b15c-c460cd7b66fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200230Z:5a16bebe-ff21-4341-be79-583462ded50d" + "CENTRALUS:20151016T191034Z:f1cad570-37d4-49de-b15c-c460cd7b66fb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:02:30 GMT" + "Fri, 16 Oct 2015 19:10:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -265,8 +265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,10 +274,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,28 +289,28 @@ "no-cache" ], "x-ms-request-id": [ - "2e420855-5561-4853-b9ec-7b1df6dcc671" + "2bf2c309-9ae5-4088-839a-22b0bd00b79c" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14978" ], "x-ms-correlation-request-id": [ - "a1d3ca13-30f9-420b-a098-2468616f59e5" + "fed71b17-cebb-4ca4-8e69-7249e7dcc262" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200300Z:a1d3ca13-30f9-420b-a098-2468616f59e5" + "CENTRALUS:20151016T191104Z:fed71b17-cebb-4ca4-8e69-7249e7dcc262" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:03:00 GMT" + "Fri, 16 Oct 2015 19:11:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -319,8 +319,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -328,10 +328,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,28 +343,28 @@ "no-cache" ], "x-ms-request-id": [ - "7811afce-973c-4b68-b9bc-04db25873c8f" + "962c9756-19ef-40cd-b737-88ab7acc8303" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14977" ], "x-ms-correlation-request-id": [ - "3d439d49-1f6e-4219-a79d-e4f41f829250" + "af07b784-f8c8-450b-9b71-ffd9fd32fb24" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200331Z:3d439d49-1f6e-4219-a79d-e4f41f829250" + "CENTRALUS:20151016T191134Z:af07b784-f8c8-450b-9b71-ffd9fd32fb24" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:03:30 GMT" + "Fri, 16 Oct 2015 19:11:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -373,8 +373,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -382,10 +382,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,28 +397,28 @@ "no-cache" ], "x-ms-request-id": [ - "368822fc-81b0-4d20-9b3b-99e30c4254cf" + "490fca5f-ef53-4365-8671-08d1c3f6858d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14976" ], "x-ms-correlation-request-id": [ - "0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765" + "1f351d92-bf79-4455-924a-985ca9fa2b80" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200401Z:0c00ddd9-0dbb-4cfa-8ce0-5ce3931e1765" + "CENTRALUS:20151016T191204Z:1f351d92-bf79-4455-924a-985ca9fa2b80" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:04:00 GMT" + "Fri, 16 Oct 2015 19:12:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -427,8 +427,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -436,10 +436,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -451,28 +451,28 @@ "no-cache" ], "x-ms-request-id": [ - "96d44e2d-05c8-46e0-9475-1465b7338778" + "d748b193-fd12-433e-a9d3-a278fe19dcb5" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14975" ], "x-ms-correlation-request-id": [ - "9b21c38f-92c5-4166-95d1-34bbf96e2c04" + "ecd955a9-0bde-47d4-86f3-48990424560a" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200431Z:9b21c38f-92c5-4166-95d1-34bbf96e2c04" + "CENTRALUS:20151016T191235Z:ecd955a9-0bde-47d4-86f3-48990424560a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:04:31 GMT" + "Fri, 16 Oct 2015 19:12:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,10 +490,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -505,28 +505,28 @@ "no-cache" ], "x-ms-request-id": [ - "d0fbe7ed-9375-44cd-8d8c-ab71df6dc889" + "8c673e65-6969-4142-8168-bbaa5c8ae196" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14974" ], "x-ms-correlation-request-id": [ - "90b90f43-d816-4dc9-ac65-95f8b7261981" + "4ed8cec5-ab94-42f9-80ad-f950902c3f9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200501Z:90b90f43-d816-4dc9-ac65-95f8b7261981" + "CENTRALUS:20151016T191305Z:4ed8cec5-ab94-42f9-80ad-f950902c3f9c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:05:00 GMT" + "Fri, 16 Oct 2015 19:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -544,10 +544,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -559,28 +559,28 @@ "no-cache" ], "x-ms-request-id": [ - "05786cc1-922c-4230-81c4-0b307cd01483" + "0ebca380-ea5b-4053-bb87-6b41ef0d7bd4" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14973" ], "x-ms-correlation-request-id": [ - "def2a16f-d01e-464f-a3ba-45db1e258b40" + "4b8f194f-646d-4260-8146-3cad969efd32" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200531Z:def2a16f-d01e-464f-a3ba-45db1e258b40" + "CENTRALUS:20151016T191335Z:4b8f194f-646d-4260-8146-3cad969efd32" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:05:31 GMT" + "Fri, 16 Oct 2015 19:13:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -589,8 +589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598,10 +598,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,28 +613,28 @@ "no-cache" ], "x-ms-request-id": [ - "67ba99aa-e133-48ee-8477-ab339cce6a5c" + "5820781b-3981-465d-afda-9add1e7d7bb7" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14972" ], "x-ms-correlation-request-id": [ - "a030e068-88af-4fe4-b0c2-faa8e20178ee" + "07a39fba-2500-4d6a-8f09-5a58fc754d29" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200601Z:a030e068-88af-4fe4-b0c2-faa8e20178ee" + "CENTRALUS:20151016T191405Z:07a39fba-2500-4d6a-8f09-5a58fc754d29" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:06:00 GMT" + "Fri, 16 Oct 2015 19:14:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -643,8 +643,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,10 +652,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,28 +667,28 @@ "no-cache" ], "x-ms-request-id": [ - "2e1cfefb-2d4b-41a9-958e-604574450f6e" + "791fb01e-4317-42c0-8d68-c313c9a2be99" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14971" ], "x-ms-correlation-request-id": [ - "aec1de4a-cf41-45c7-ad6d-d2d611245354" + "3abe7f31-1d63-4bf0-b78f-1431411ea877" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200631Z:aec1de4a-cf41-45c7-ad6d-d2d611245354" + "CENTRALUS:20151016T191435Z:3abe7f31-1d63-4bf0-b78f-1431411ea877" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:06:31 GMT" + "Fri, 16 Oct 2015 19:14:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -697,8 +697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -706,10 +706,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -721,28 +721,28 @@ "no-cache" ], "x-ms-request-id": [ - "45151949-519d-45a3-b43d-6c5e8709d071" + "c8714f02-538c-4277-816b-8132a9e80085" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14971" ], "x-ms-correlation-request-id": [ - "4db69181-7ca0-42d0-8127-58cf84ed7634" + "b924b15a-3295-4a11-a494-69abc063c676" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200701Z:4db69181-7ca0-42d0-8127-58cf84ed7634" + "CENTRALUS:20151016T191505Z:b924b15a-3295-4a11-a494-69abc063c676" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:07:01 GMT" + "Fri, 16 Oct 2015 19:15:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -751,8 +751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -760,10 +760,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -775,28 +775,28 @@ "no-cache" ], "x-ms-request-id": [ - "eecf4daf-f7a0-4376-b1c2-0e3bf390a9f4" + "e780dfd3-9260-409c-a278-92eeaed67dd4" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14970" ], "x-ms-correlation-request-id": [ - "e6838334-cad9-4e0c-80f2-b463e66b2297" + "9fbf1163-d8cf-4e53-8012-45f07a820767" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200732Z:e6838334-cad9-4e0c-80f2-b463e66b2297" + "CENTRALUS:20151016T191535Z:9fbf1163-d8cf-4e53-8012-45f07a820767" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:07:31 GMT" + "Fri, 16 Oct 2015 19:15:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -805,8 +805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,10 +814,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -829,28 +829,28 @@ "no-cache" ], "x-ms-request-id": [ - "6ff90003-08b4-4058-826c-e085a02b9807" + "c628db8c-c75f-47ec-b8b6-65d064143f6d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" + "14969" ], "x-ms-correlation-request-id": [ - "203549f2-e896-4112-8886-027010439802" + "dcb80c41-14f4-4353-b3e2-82f3977084cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200802Z:203549f2-e896-4112-8886-027010439802" + "CENTRALUS:20151016T191605Z:dcb80c41-14f4-4353-b3e2-82f3977084cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:08:01 GMT" + "Fri, 16 Oct 2015 19:16:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +868,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,28 +883,28 @@ "no-cache" ], "x-ms-request-id": [ - "eb58d06e-b82c-4a37-88e1-eec96dc027d0" + "7ee601b5-9052-4217-871c-ab84a74f9173" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14968" ], "x-ms-correlation-request-id": [ - "91711632-4415-42e0-b4f7-2666e085f27e" + "4d878d96-0537-4c90-8d96-9e8cb70fc67d" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200832Z:91711632-4415-42e0-b4f7-2666e085f27e" + "CENTRALUS:20151016T191635Z:4d878d96-0537-4c90-8d96-9e8cb70fc67d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:08:31 GMT" + "Fri, 16 Oct 2015 19:16:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,10 +922,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -937,28 +937,28 @@ "no-cache" ], "x-ms-request-id": [ - "fec35444-a070-4fa5-93c7-67c13c3d890e" + "248d5e3d-e54f-4fa1-800a-2267cfb37dcb" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14967" ], "x-ms-correlation-request-id": [ - "5b3bd483-1bd4-4bf4-8d56-903d666f186f" + "4308520e-da4c-48cc-a4a7-36ff0403ce78" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200902Z:5b3bd483-1bd4-4bf4-8d56-903d666f186f" + "CENTRALUS:20151016T191705Z:4308520e-da4c-48cc-a4a7-36ff0403ce78" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:09:02 GMT" + "Fri, 16 Oct 2015 19:17:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -967,8 +967,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,10 +976,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -991,28 +991,28 @@ "no-cache" ], "x-ms-request-id": [ - "2620e4e8-cdf3-4f53-875c-59f75ea43da0" + "7abcb4df-6a3c-4bfa-932d-216c79ffbe75" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14966" ], "x-ms-correlation-request-id": [ - "3a409d7a-ae7f-4223-ad12-893e07d95767" + "419cda78-7921-4122-bccb-8e898e77cc63" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200932Z:3a409d7a-ae7f-4223-ad12-893e07d95767" + "CENTRALUS:20151016T191736Z:419cda78-7921-4122-bccb-8e898e77cc63" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:09:31 GMT" + "Fri, 16 Oct 2015 19:17:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1021,8 +1021,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,10 +1030,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,28 +1045,28 @@ "no-cache" ], "x-ms-request-id": [ - "45b7a93a-2c87-4fbf-8b2d-9dbce2af0811" + "ca0ee632-0d93-4e20-ae34-365881a27252" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14965" ], "x-ms-correlation-request-id": [ - "b8230270-88c3-44c8-bcc2-b3bfb66cc0d1" + "909c8e41-0611-489e-8739-c49a2a197edc" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201002Z:b8230270-88c3-44c8-bcc2-b3bfb66cc0d1" + "CENTRALUS:20151016T191806Z:909c8e41-0611-489e-8739-c49a2a197edc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:10:02 GMT" + "Fri, 16 Oct 2015 19:18:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1075,8 +1075,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1084,10 +1084,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,28 +1099,28 @@ "no-cache" ], "x-ms-request-id": [ - "6ae1fc4f-79f0-4a0d-9f8d-8e86c4848024" + "0d1a676a-93a2-4f40-85f1-9fbe27b0ab3d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14964" ], "x-ms-correlation-request-id": [ - "59d39c3a-f659-4e0f-88e5-024b15bfe04e" + "e7609054-20a3-42f3-8ad1-f7b03b6b8ded" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201032Z:59d39c3a-f659-4e0f-88e5-024b15bfe04e" + "CENTRALUS:20151016T191836Z:e7609054-20a3-42f3-8ad1-f7b03b6b8ded" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:10:32 GMT" + "Fri, 16 Oct 2015 19:18:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1129,8 +1129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1138,10 +1138,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,28 +1153,28 @@ "no-cache" ], "x-ms-request-id": [ - "6dd8e189-c0bf-4b86-876a-af9b3403167e" + "b283c69a-e620-4469-9f10-5ae4e6542d86" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14963" ], "x-ms-correlation-request-id": [ - "c16b788a-a4ac-4764-9619-d75b90304f2a" + "950aacb2-0b15-4785-9ea5-00a8a148523e" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201102Z:c16b788a-a4ac-4764-9619-d75b90304f2a" + "CENTRALUS:20151016T191836Z:950aacb2-0b15-4785-9ea5-00a8a148523e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:11:02 GMT" + "Fri, 16 Oct 2015 19:18:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1183,8 +1183,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1192,10 +1192,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,28 +1207,28 @@ "no-cache" ], "x-ms-request-id": [ - "b42d8123-cd11-4fc3-8828-0945bd71326b" + "fc366ed3-1cbf-4813-bcff-2da42e2fc208" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14962" ], "x-ms-correlation-request-id": [ - "264f25c8-eecb-4263-aec6-8fe8e3301b43" + "e8ce664d-00ec-4f86-a6f0-538a56df3b2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201132Z:264f25c8-eecb-4263-aec6-8fe8e3301b43" + "CENTRALUS:20151016T191836Z:e8ce664d-00ec-4f86-a6f0-538a56df3b2a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:11:32 GMT" + "Fri, 16 Oct 2015 19:18:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1237,8 +1237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,10 +1246,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1261,28 +1261,28 @@ "no-cache" ], "x-ms-request-id": [ - "b50b60cc-178b-419a-9aad-f2fe9d3d591b" + "d39e235d-b5f8-4739-93c0-e7067dbe67dd" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14961" ], "x-ms-correlation-request-id": [ - "8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da" + "ac391724-59ae-42d1-aea7-e90636045962" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201203Z:8d0e49b9-5b1a-4d4d-8231-fdb74a38d7da" + "CENTRALUS:20151016T191837Z:ac391724-59ae-42d1-aea7-e90636045962" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:12:02 GMT" + "Fri, 16 Oct 2015 19:18:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1291,8 +1291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1300,10 +1300,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1315,28 +1315,28 @@ "no-cache" ], "x-ms-request-id": [ - "89bedb7d-bea9-4950-852b-c6866288e7b3" + "12ec4dc9-8ca8-4226-b338-2121d521310f" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14960" ], "x-ms-correlation-request-id": [ - "62af6546-48d9-4833-8f0e-c928cea0cd89" + "393d79c8-71bb-4dbe-be01-a97dd3faa977" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201233Z:62af6546-48d9-4833-8f0e-c928cea0cd89" + "CENTRALUS:20151016T191837Z:393d79c8-71bb-4dbe-be01-a97dd3faa977" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:12:32 GMT" + "Fri, 16 Oct 2015 19:18:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1345,8 +1345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1354,10 +1354,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1369,28 +1369,28 @@ "no-cache" ], "x-ms-request-id": [ - "ab8ee9e7-2c02-4e09-b187-7ed239511982" + "7ea3ba44-f2e0-4179-9a68-0ee28932943e" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14959" ], "x-ms-correlation-request-id": [ - "1052bcdb-8e7a-4167-a87f-f4afa40285a9" + "5895519d-f6b6-4a12-bafa-355b1c8e2920" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201303Z:1052bcdb-8e7a-4167-a87f-f4afa40285a9" + "CENTRALUS:20151016T191838Z:5895519d-f6b6-4a12-bafa-355b1c8e2920" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:13:02 GMT" + "Fri, 16 Oct 2015 19:18:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1399,8 +1399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,10 +1408,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1423,28 +1423,28 @@ "no-cache" ], "x-ms-request-id": [ - "4e08b6d0-f723-46a5-934a-fb298ed1d061" + "e72c3a35-4da8-4b12-976e-119c4a6fb36f" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14958" ], "x-ms-correlation-request-id": [ - "a7e1e200-8d70-4ab3-afe1-1d65b2b17a60" + "c73839db-b719-4652-92fa-a72634c330a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201333Z:a7e1e200-8d70-4ab3-afe1-1d65b2b17a60" + "CENTRALUS:20151016T191838Z:c73839db-b719-4652-92fa-a72634c330a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:13:33 GMT" + "Fri, 16 Oct 2015 19:18:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1453,727 +1453,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e624f73-b93a-40eb-b60e-e490246f7402" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" - ], - "x-ms-correlation-request-id": [ - "ea0b7b56-880b-4012-8443-374332fd00e1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201403Z:ea0b7b56-880b-4012-8443-374332fd00e1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:14:02 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1ecdc55-c94d-4c69-b45d-443e02637365" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" - ], - "x-ms-correlation-request-id": [ - "71a5d168-ee86-4942-865b-feb5a9792a7e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201433Z:71a5d168-ee86-4942-865b-feb5a9792a7e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:14:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5992d75b-df67-4b38-9093-211e819fe58d" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" - ], - "x-ms-correlation-request-id": [ - "0861efd5-586a-4719-a5d8-b657eb4c026d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201503Z:0861efd5-586a-4719-a5d8-b657eb4c026d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:15:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7207b843-15e1-46ba-8a5c-2a521c4b218c" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" - ], - "x-ms-correlation-request-id": [ - "47aa9e86-f583-43e5-a675-91f039b67bab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201533Z:47aa9e86-f583-43e5-a675-91f039b67bab" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:15:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c0b5ae0d-248a-409b-a282-d27e8ebb57bd" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" - ], - "x-ms-correlation-request-id": [ - "831763f8-0610-48eb-b6d7-9b5d438ac4c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201604Z:831763f8-0610-48eb-b6d7-9b5d438ac4c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:16:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "571" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "78fda8c5-c68c-413c-8982-66bd9764cf6f" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" - ], - "x-ms-correlation-request-id": [ - "6120b0e5-01ec-42f6-b776-e96dec0d9dfe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201634Z:6120b0e5-01ec-42f6-b776-e96dec0d9dfe" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:16:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "572" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a5029de7-05fc-4bd5-b286-04bb2f9b9e6f" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" - ], - "x-ms-correlation-request-id": [ - "fd5c5d91-f65b-41e6-b88a-6bb1c1efefba" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201704Z:fd5c5d91-f65b-41e6-b88a-6bb1c1efefba" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "572" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "61bdfe6f-348e-4a8f-8847-e6ae5fc86da9" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" - ], - "x-ms-correlation-request-id": [ - "af30b7dc-f135-439d-b554-c3c078a21cdf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201704Z:af30b7dc-f135-439d-b554-c3c078a21cdf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "572" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c98d56dd-fd03-4866-aa5d-c677b3f822aa" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" - ], - "x-ms-correlation-request-id": [ - "4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201704Z:4e9bc533-1b51-4ce3-9090-6ed6c8f8dbe1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "609" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "586dbbf6-d454-4874-abab-7a40652f1fc8" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" - ], - "x-ms-correlation-request-id": [ - "1f801fd7-a8ae-467b-a87a-e8c89904be97" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201705Z:1f801fd7-a8ae-467b-a87a-e8c89904be97" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:05 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "609" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7e6e2751-5999-4ef6-8308-02ab7d728479" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" - ], - "x-ms-correlation-request-id": [ - "459316e7-7fa9-4c44-b65c-f06c1d1cd427" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201705Z:459316e7-7fa9-4c44-b65c-f06c1d1cd427" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:05 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "609" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c17fcb41-fc92-43c3-b72d-535fc494f20e" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" - ], - "x-ms-correlation-request-id": [ - "920d4c2d-9d84-4a76-9ce0-251188d930b9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201705Z:920d4c2d-9d84-4a76-9ce0-251188d930b9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:05 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "609" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "309953d5-f2a2-4c48-9ae2-b39fdaa712a2" - ], - "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-correlation-request-id": [ - "2bf1f7f9-d856-44bb-b208-52e3cb97505e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150914T201707Z:2bf1f7f9-d856-44bb-b208-52e3cb97505e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 14 Sep 2015 20:17:07 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "225" + "197" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "690" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2185,10 +1483,10 @@ "no-cache" ], "x-ms-request-id": [ - "2ed75c04-e4a7-4efc-9158-c25087a978f8" + "e2850a74-7340-4909-9127-31029a8b505d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2197,19 +1495,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "39d4eb47-7b49-4fbe-967b-8f997529655b" + "f8c62172-133e-476e-bd62-1453d3b5638e" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T200030Z:39d4eb47-7b49-4fbe-967b-8f997529655b" + "CENTRALUS:20151016T190834Z:f8c62172-133e-476e-bd62-1453d3b5638e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:00:29 GMT" + "Fri, 16 Oct 2015 19:08:34 GMT" ], "Location": [ - "https://prod-rp-ncus.cacheinfra.windows.net:10225/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe" + "https://df-rp-ncus.cacheinfra.icbbvt.windows-int.net:10225/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2218,25 +1516,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-random\"\r\n },\r\n \"enableNonSslPort\": false\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "307" + "279" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"powershelltestpipe\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-random\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n },\r\n \"hostName\": \"powershelltestpipe.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "728" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2248,10 +1546,10 @@ "no-cache" ], "x-ms-request-id": [ - "1dd08661-cdc3-4c66-9e0c-7c7c4e148f02" + "a3bd6669-3785-4533-b364-8411a33d9e92" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2260,16 +1558,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "3f3e9e1f-7bb0-4497-b2bf-97da1f27a405" + "246b4915-6ebf-4d4d-b641-d3269f7a98da" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201705Z:3f3e9e1f-7bb0-4497-b2bf-97da1f27a405" + "CENTRALUS:20151016T191837Z:246b4915-6ebf-4d4d-b641-d3269f7a98da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:17:05 GMT" + "Fri, 16 Oct 2015 19:18:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2278,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2287,7 +1585,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"opQ8053oaI7qrkIT+kXwwI+tPO8NM0iQOHm4nDhNb3w=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"31+LJ4kD2NkW4m71N5fqLPeMc9p/oMxXYF8eDO6ifoA=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -2302,10 +1600,10 @@ "no-cache" ], "x-ms-request-id": [ - "97ed8dc5-26d5-41bd-8a4c-261696c80db7" + "3541359b-48f2-4223-8ab7-d5dbb425557d" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2314,16 +1612,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "0bee9697-6844-4475-9207-77f92836821f" + "9fa2c7b8-31ce-4c25-9aa7-376b7b77389a" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201705Z:0bee9697-6844-4475-9207-77f92836821f" + "CENTRALUS:20151016T191837Z:9fa2c7b8-31ce-4c25-9aa7-376b7b77389a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:17:05 GMT" + "Fri, 16 Oct 2015 19:18:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2332,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/listKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2341,7 +1639,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"jfBCDa4WdDz3gLSg0iLQtxaii4pakgkBvaofWNMrWfE=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -2356,10 +1654,10 @@ "no-cache" ], "x-ms-request-id": [ - "0ecace38-c28f-469a-8d5e-1cb67e2bf2ac" + "61f70e8f-24be-45f0-a2a1-3d522fcdee29" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,16 +1666,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "b982fd8c-3fcb-4ceb-97f2-abf2e2c33156" + "0a56b58c-b27f-4255-be7e-307012d4a13c" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201707Z:b982fd8c-3fcb-4ceb-97f2-abf2e2c33156" + "CENTRALUS:20151016T191838Z:0a56b58c-b27f-4255-be7e-307012d4a13c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:17:07 GMT" + "Fri, 16 Oct 2015 19:18:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2386,8 +1684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe/regenerateKey?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -2401,7 +1699,7 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"RWt+FD9XndKt6DFS0KhH/ZbsUUczkCowVDotdkgMzGU=\",\r\n \"secondaryKey\": \"ckIK3+RLveX5D3qPSE6xskhPAsU4j6UJXtgl+858j6E=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"jfBCDa4WdDz3gLSg0iLQtxaii4pakgkBvaofWNMrWfE=\",\r\n \"secondaryKey\": \"BNmj8QRamyb78ToIca4U6clrdbQVPtSWgm30hC6qslA=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "123" @@ -2416,10 +1714,10 @@ "no-cache" ], "x-ms-request-id": [ - "5012d810-8f94-4f21-8989-b8f0c3caaa1f" + "7a996562-d4f5-42bb-84aa-9c84e0ba03ee" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2428,16 +1726,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "9c134c04-3441-4070-8409-539f997d6d97" + "addf9f60-f28d-44c2-b218-4360b7426a7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201707Z:9c134c04-3441-4070-8409-539f997d6d97" + "CENTRALUS:20151016T191838Z:addf9f60-f28d-44c2-b218-4360b7426a7d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:17:06 GMT" + "Fri, 16 Oct 2015 19:18:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2446,8 +1744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/powershelltestpipe?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3Bvd2Vyc2hlbGx0ZXN0cGlwZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2467,10 +1765,10 @@ "no-cache" ], "x-ms-request-id": [ - "f13cec0a-932d-4495-bdbe-c82fb2a31531" + "eb566e5b-4f49-48e1-b07d-0c37b2be2633" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2479,16 +1777,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "55eef1a7-406a-441c-a4b2-d27c3afed48f" + "7e8893dd-37b2-4cf4-a2d3-286c83d96871" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T201708Z:55eef1a7-406a-441c-a4b2-d27c3afed48f" + "CENTRALUS:20151016T191839Z:7e8893dd-37b2-4cf4-a2d3-286c83d96871" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 20:17:08 GMT" + "Fri, 16 Oct 2015 19:18:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2499,6 +1797,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b" + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json index 81fd29ea7bd5..9e361d178640 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE1LTAzLTAx", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/MyResourceGroup/providers/Microsoft.Cache/Redis/NonExistingRedisCache?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL015UmVzb3VyY2VHcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL05vbkV4aXN0aW5nUmVkaXNDYWNoZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "61987ae9-1861-4584-a927-9cc2ffc8c14f" + "f00029de-2908-4df8-b43b-c6abdeb83e2d" ], "x-ms-correlation-request-id": [ - "61987ae9-1861-4584-a927-9cc2ffc8c14f" + "f00029de-2908-4df8-b43b-c6abdeb83e2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194717Z:61987ae9-1861-4584-a927-9cc2ffc8c14f" + "CENTRALUS:20151016T002954Z:f00029de-2908-4df8-b43b-c6abdeb83e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:16 GMT" + "Fri, 16 Oct 2015 00:29:54 GMT" ] }, "StatusCode": 404 @@ -51,6 +51,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b" + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json index c40d57e5270d..fa4056e565bb 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetRedisCacheBugFixTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "533" + "575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,28 +25,28 @@ "no-cache" ], "x-ms-request-id": [ - "ab2a5e17-0e31-4e12-a567-fa78be5e542c" + "0108a901-4b0d-4271-80da-02d7d979d14a" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14922" ], "x-ms-correlation-request-id": [ - "76fd5216-1006-4bbb-8c22-578fe0a51a39" + "b3163933-4f0b-47ff-93dd-700c1cc28a9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194703Z:76fd5216-1006-4bbb-8c22-578fe0a51a39" + "CENTRALUS:20151016T002041Z:b3163933-4f0b-47ff-93dd-700c1cc28a9c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:02 GMT" + "Fri, 16 Oct 2015 00:20:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -55,8 +55,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -64,10 +64,10 @@ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "533" + "574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,28 +79,28 @@ "no-cache" ], "x-ms-request-id": [ - "a670cd33-7d1c-448a-8c55-0ea72dfccf4d" + "ee6bd437-8c97-424d-9ae2-9daded58a469" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14921" ], "x-ms-correlation-request-id": [ - "4b18eae4-e533-4690-b820-b2c525711675" + "b4b38a34-31aa-4aa0-b4d1-7f3961510956" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194704Z:4b18eae4-e533-4690-b820-b2c525711675" + "CENTRALUS:20151016T002042Z:b4b38a34-31aa-4aa0-b4d1-7f3961510956" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:03 GMT" + "Fri, 16 Oct 2015 00:20:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -109,25 +109,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "228" + "200" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"8yLKDB9auMZbwxUPDAVUGNHPx6x9n/Z7DeIWoyrgGKo=\",\r\n \"secondaryKey\": \"0Rx59FYvgMXyAXZzt0MllOB086tebL0dJJazPkJ0BWA=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,10 +139,10 @@ "no-cache" ], "x-ms-request-id": [ - "262308b6-7645-449c-803e-93807686cd1a" + "2c68a889-2080-4f10-8e9b-3e14dc88a30e" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -151,16 +151,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "75c43b21-7f1f-4c92-8bd1-fa7960a2ea21" + "44a51ff0-6ba9-4366-b1bd-4d6eea81c98b" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194704Z:75c43b21-7f1f-4c92-8bd1-fa7960a2ea21" + "CENTRALUS:20151016T002042Z:44a51ff0-6ba9-4366-b1bd-4d6eea81c98b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:03 GMT" + "Fri, 16 Oct 2015 00:20:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -169,25 +169,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRkYjdlZDMtNmVkOS00ODYxLThiMjItN2MwYzBjOTg0OTBiL3Jlc291cmNlR3JvdXBzL1NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDMtMDE=", + "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3NpZGRoYXJ0aC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3NpZGRoYXJ0aGNoYXRyb2xhP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n }\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "275" + "247" ], "User-Agent": [ "Microsoft.Azure.Management.Redis.RedisManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04db7ed3-6ed9-4861-8b22-7c0c0c98490b/resourceGroups/Siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"82xerhg0P27QVoRKKEWb2XdLsemKyJ+Fe4BmlHhItS8=\",\r\n \"secondaryKey\": \"W9q9jLz3ICEys0a7ao7T673xQ+gxIhLZl0eBDO4YgG4=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/siddharth/providers/Microsoft.Cache/Redis/siddharthchatrola\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"siddharthchatrola\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"family\": \"C\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"1000\",\r\n \"maxmemory-reserved\": \"50\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"50\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"8yLKDB9auMZbwxUPDAVUGNHPx6x9n/Z7DeIWoyrgGKo=\",\r\n \"secondaryKey\": \"0Rx59FYvgMXyAXZzt0MllOB086tebL0dJJazPkJ0BWA=\"\r\n },\r\n \"hostName\": \"siddharthchatrola.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,10 +199,10 @@ "no-cache" ], "x-ms-request-id": [ - "a3526f7c-2bf1-411e-8bb9-39bfd5ac8a0f" + "30b64efe-14ab-448a-bac1-139ee9c12792" ], "x-rp-server-mvid": [ - "1a08a7d6-521a-4639-acb2-ff4f19bc48dd" + "98aa4a63-c2e4-4364-a354-558878bbf50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -211,16 +211,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "08246fc9-111d-478d-8bbe-27dea95a92c1" + "f6c8d4da-b194-4015-9efa-52b4f01952e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150914T194704Z:08246fc9-111d-478d-8bbe-27dea95a92c1" + "CENTRALUS:20151016T002043Z:f6c8d4da-b194-4015-9efa-52b4f01952e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 14 Sep 2015 19:47:04 GMT" + "Fri, 16 Oct 2015 00:20:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -231,6 +231,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04db7ed3-6ed9-4861-8b22-7c0c0c98490b" + "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config index d1c2da3e300b..851f5c90bd3e 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config @@ -2,9 +2,9 @@ - + - + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj index 233fd2278da5..126f2cebd7a4 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj @@ -53,15 +53,15 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + + ..\..\..\packages\Microsoft.Azure.Management.Redis.1.1.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll + True False diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs index c852ea18269b..c811abaed4a1 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/NewAzureRedisCache.cs @@ -42,13 +42,14 @@ public class NewAzureRedisCache : RedisCacheCmdletBase [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Redis version.")] public string RedisVersion { get; set; } - [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")] - [ValidateSet(SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, - SizeConverter.C6String, SizeConverter.C0, SizeConverter.C1, SizeConverter.C2, SizeConverter.C3, SizeConverter.C4, SizeConverter.C5, SizeConverter.C6, IgnoreCase = false)] + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")] + [ValidateSet(SizeConverter.P1String, SizeConverter.P2String, SizeConverter.P3String, SizeConverter.P4String, + SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, SizeConverter.C6String, + SizeConverter.MB250, SizeConverter.GB1, SizeConverter.GB2_5, SizeConverter.GB6, SizeConverter.GB13, SizeConverter.GB26, SizeConverter.GB53, IgnoreCase = false)] public string Size { get; set; } - [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Wheather want to create Basic (1 Node) or Standard (2 Node) cache.")] - [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, IgnoreCase = false)] + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Choose to create a Basic, Standard, or Premium cache.")] + [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, SkuStrings.Premium, IgnoreCase = false)] public string Sku { get; set; } [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "MaxMemoryPolicy is deprecated. Please use RedisConfiguration instead.")] @@ -60,7 +61,20 @@ public class NewAzureRedisCache : RedisCacheCmdletBase [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "EnableNonSslPort property of redis cache.")] public bool? EnableNonSslPort { get; set; } - private const string redisDefaultVersion = "3.0"; + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "A hash table which represents tenant settings.")] + public Hashtable TenantSettings { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The number of shards to create on a Premium Cluster Cache.")] + public int? ShardCount { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1")] + public string VirtualNetwork { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Required when deploying a redis cache inside an existing Azure Virtual Network.")] + public string Subnet { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Required when deploying a redis cache inside an existing Azure Virtual Network.")] + public string StaticIP { get; set; } protected override void ProcessRecord() { @@ -74,27 +88,26 @@ protected override void ProcessRecord() throw new ArgumentException(Resources.MaxMemoryPolicyException); } - string skuFamily; - - int skuCapacity = 1; + if (string.IsNullOrEmpty(Sku)) + { + Sku = SkuStrings.Standard; + } + if (string.IsNullOrEmpty(Size)) { Size = SizeConverter.C1String; } else { - Size = SizeConverter.GetSizeInRedisSpecificFormat(Size); + Size = SizeConverter.GetSizeInRedisSpecificFormat(Size, SkuStrings.Premium.Equals(Sku)); } + int skuCapacity = 1; // Size to SkuFamily and SkuCapacity conversion - skuFamily = Size.Substring(0, 1); + string skuFamily = Size.Substring(0, 1); int.TryParse(Size.Substring(1), out skuCapacity); - if (string.IsNullOrEmpty(Sku)) - { - Sku = SkuStrings.Standard; - } // If Force flag is not avaliable than check if cache is already available or not try @@ -121,7 +134,13 @@ protected override void ProcessRecord() throw; } } - WriteObject(new RedisCacheAttributesWithAccessKeys(CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, redisDefaultVersion, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort), ResourceGroupName)); + + WriteObject( + new RedisCacheAttributesWithAccessKeys( + CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, Location, skuFamily, skuCapacity, Sku, RedisConfiguration, EnableNonSslPort, TenantSettings, ShardCount, VirtualNetwork, Subnet, StaticIP), + ResourceGroupName + ) + ); } } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs index a73e8f0d58e7..e4f1a87761eb 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands/SetAzureRedisCache.cs @@ -36,13 +36,14 @@ public class SetAzureRedisCache : RedisCacheCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")] - [ValidateSet(SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, - SizeConverter.C6String, SizeConverter.C0, SizeConverter.C1, SizeConverter.C2, SizeConverter.C3, SizeConverter.C4, SizeConverter.C5, SizeConverter.C6, IgnoreCase = false)] + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Size of redis cache. Valid values: P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB")] + [ValidateSet(SizeConverter.P1String, SizeConverter.P2String, SizeConverter.P3String, SizeConverter.P4String, + SizeConverter.C0String, SizeConverter.C1String, SizeConverter.C2String, SizeConverter.C3String, SizeConverter.C4String, SizeConverter.C5String, SizeConverter.C6String, + SizeConverter.MB250, SizeConverter.GB1, SizeConverter.GB2_5, SizeConverter.GB6, SizeConverter.GB13, SizeConverter.GB26, SizeConverter.GB53, IgnoreCase = false)] public string Size { get; set; } - [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Wheather want to create Basic (1 Node) or Standard (2 Node) cache.")] - [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, IgnoreCase = false)] + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Choose to create a Basic, Standard, or Premium cache.")] + [ValidateSet(SkuStrings.Basic, SkuStrings.Standard, SkuStrings.Premium, IgnoreCase = false)] public string Sku { get; set; } [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "MaxMemoryPolicy is deprecated. Please use RedisConfiguration instead.")] @@ -54,6 +55,12 @@ public class SetAzureRedisCache : RedisCacheCmdletBase [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "EnableNonSslPort property of redis cache.")] public bool? EnableNonSslPort { get; set; } + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "A hash table which represents tenant settings.")] + public Hashtable TenantSettings { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "The number of shards to create on a Premium Cluster Cache.")] + public int? ShardCount { get; set; } + protected override void ProcessRecord() { if (!string.IsNullOrEmpty(MaxMemoryPolicy)) @@ -83,15 +90,15 @@ protected override void ProcessRecord() } else { - Size = SizeConverter.GetSizeInRedisSpecificFormat(Size); + Size = SizeConverter.GetSizeInRedisSpecificFormat(Size, SkuStrings.Premium.Equals(Sku)); skuFamily = Size.Substring(0, 1); int.TryParse(Size.Substring(1), out skuCapacity); } WriteObject(new RedisCacheAttributesWithAccessKeys( - CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, response.Resource.Location, response.Resource.Properties.RedisVersion, - skuFamily, skuCapacity, skuName, RedisConfiguration, EnableNonSslPort), + CacheClient.CreateOrUpdateCache(ResourceGroupName, Name, response.Resource.Location, skuFamily, skuCapacity, skuName, RedisConfiguration, EnableNonSslPort, + TenantSettings, ShardCount, response.Resource.Properties.VirtualNetwork, response.Resource.Properties.Subnet, response.Resource.Properties.StaticIP), ResourceGroupName)); } } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml index 29ffdbb96969..850c0dee24c7 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml @@ -308,14 +308,14 @@ Size - Size of the redis cache. The default value is 1GB or C1. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. + Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. String Sku - Sku of redis cache. The default value is Standard. Possible values are Basic and Standard. + Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium. String @@ -329,7 +329,7 @@ RedisConfiguration - All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. + All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. Hashtable @@ -340,6 +340,34 @@ Boolean + + ShardCount + + The number of shards to create on a Premium Cluster Cache. + + Integer + + + VirtualNetwork + + The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1 + + String + + + Subnet + + Required when deploying a redis cache inside an existing Azure Virtual Network. + + String + + + StaticIP + + Required when deploying a redis cache inside an existing Azure Virtual Network. + + String + @@ -397,7 +425,7 @@ Size - Size of the redis cache. The default value is 1GB or C1. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. + Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. String @@ -409,7 +437,7 @@ Sku - Sku of the redis cache. The default value is Standard. Possible values are Basic and Standard. + Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium. String @@ -434,7 +462,7 @@ RedisConfiguration - All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. + All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. Hashtable @@ -457,6 +485,54 @@ + + ShardCount + + The number of shards to create on a Premium Cluster Cache. + + Integer + + Integer + + + + + + VirtualNetwork + + The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1 + + String + + String + + + + + + Subnet + + Required when deploying a redis cache inside an existing Azure Virtual Network. + + String + + String + + + + + + StaticIP + + Required when deploying a redis cache inside an existing Azure Virtual Network. + + String + + String + + + + @@ -1117,14 +1193,14 @@ Size - Size of the redis cache. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. + Size of the redis cache. The default value is 1GB or C1. Possible values are P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. String Sku - Sku of redis cache. Possible values are Basic and Standard. + Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium. String @@ -1138,7 +1214,7 @@ RedisConfiguration - All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. + All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. Hashtable @@ -1149,6 +1225,13 @@ Boolean + + ShardCount + + The number of shards to create on a Premium Cluster Cache. + + Integer + @@ -1181,7 +1264,7 @@ Size - Size of the redis cache. Possible values are C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. + Size of the redis cache. The default value is 1GB or C1. Possible values are P1,P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB. String @@ -1194,7 +1277,7 @@ Sku - Sku of the redis cache. Possible values are Basic and Standard. + Sku of redis cache. The default value is Standard. Possible values are Basic, Standard and Premium. String @@ -1220,7 +1303,7 @@ RedisConfiguration - All Redis Configuration Settings. Few possible keys: maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. + All Redis Configuration Settings. Few possible keys: rdb-backup-enabled, rdb-storage-connection-string, rdb-backup-frequency, maxmemory-delta, maxmemory-policy, notify-keyspace-events, maxmemory-samples, slowlog-log-slower-than, slowlog-max-len, list-max-ziplist-entries, list-max-ziplist-value, hash-max-ziplist-entries, hash-max-ziplist-value, set-max-intset-entries, zset-max-ziplist-entries, zset-max-ziplist-value etc. Hashtable @@ -1243,6 +1326,18 @@ + + ShardCount + + The number of shards to create on a Premium Cluster Cache. + + Integer + + Integer + + + + @@ -1326,4 +1421,4 @@ - \ No newline at end of file + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml index cfd6d094026d..d9941c5d004a 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.format.ps1xml @@ -66,6 +66,26 @@ ResourceGroupName + + + VirtualNetwork + + + + Subnet + + + + StaticIP + + + + TenantSettings + + + + ShardCount + @@ -144,6 +164,26 @@ SecondaryKey + + + VirtualNetwork + + + + Subnet + + + + StaticIP + + + + TenantSettings + + + + ShardCount + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs index 3bff9915d4c4..20989f3cad25 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs @@ -35,26 +35,17 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName) RedisVersion = cache.Properties.RedisVersion; Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Properties.Sku.Family, cache.Properties.Sku.Capacity); Sku = cache.Properties.Sku.Name; - ResourceGroupName = resourceGroupName; + ResourceGroupName = resourceGroupName; + VirtualNetwork = cache.Properties.VirtualNetwork; + Subnet = cache.Properties.Subnet; + StaticIP = cache.Properties.StaticIP; + TenantSettings = cache.Properties.TenantSettings; + ShardCount = cache.Properties.ShardCount; } public RedisCacheAttributes(RedisGetResponse cache, string resourceGroupName) - { - Id = cache.Resource.Id; - Location = cache.Resource.Location; - Name = cache.Resource.Name; - Type = cache.Resource.Type; - HostName = cache.Resource.Properties.HostName; - Port = cache.Resource.Properties.Port; - ProvisioningState = cache.Resource.Properties.ProvisioningState; - SslPort = cache.Resource.Properties.SslPort; - RedisConfiguration = cache.Resource.Properties.RedisConfiguration; - EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value; - RedisVersion = cache.Resource.Properties.RedisVersion; - Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity); - Sku = cache.Resource.Properties.Sku.Name; - ResourceGroupName = resourceGroupName; - } + : this(cache.Resource, resourceGroupName) + {} public RedisCacheAttributes() { } @@ -105,5 +96,15 @@ protected set public string Size { get; protected set; } public string Sku { get; protected set; } + + public IDictionary TenantSettings { get; protected set; } + + public int? ShardCount { get; protected set; } + + public string VirtualNetwork { get; protected set; } + + public string Subnet { get; protected set; } + + public string StaticIP { get; protected set; } } } \ No newline at end of file diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs index ab28ef1c9e00..49911369d37f 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs @@ -37,6 +37,12 @@ public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, str PrimaryKey = cache.Resource.Properties.AccessKeys.PrimaryKey; SecondaryKey = cache.Resource.Properties.AccessKeys.SecondaryKey; ResourceGroupName = resourceGroupName; + + VirtualNetwork = cache.Resource.Properties.VirtualNetwork; + Subnet = cache.Resource.Properties.Subnet; + StaticIP = cache.Resource.Properties.StaticIP; + TenantSettings = cache.Resource.Properties.TenantSettings; + ShardCount = cache.Resource.Properties.ShardCount; } public string PrimaryKey { get; private set; } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs index 8b070ba513de..2335af98a83f 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheClient.cs @@ -32,14 +32,14 @@ public RedisCacheClient(AzureContext context) } public RedisCacheClient() { } - public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName, string cacheName, string location, string redisVersion, string skuFamily, int skuCapacity, string skuName, Hashtable redisConfiguration, bool? enableNonSslPort) + public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName, string cacheName, string location, string skuFamily, int skuCapacity, string skuName, + Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string virtualNetwork, string subnet, string staticIP) { RedisCreateOrUpdateParameters parameters = new RedisCreateOrUpdateParameters { Location = location, Properties = new RedisProperties { - RedisVersion = redisVersion, Sku = new Sku() { Name = skuName, Family = skuFamily, @@ -61,6 +61,33 @@ public RedisCreateOrUpdateResponse CreateOrUpdateCache(string resourceGroupName, { parameters.Properties.EnableNonSslPort = enableNonSslPort.Value; } + + if (tenantSettings != null) + { + parameters.Properties.TenantSettings = new Dictionary(); + foreach (object key in tenantSettings.Keys) + { + parameters.Properties.TenantSettings.Add(key.ToString(), tenantSettings[key].ToString()); + } + } + + parameters.Properties.ShardCount = shardCount; + + if (!string.IsNullOrWhiteSpace(virtualNetwork)) + { + parameters.Properties.VirtualNetwork = virtualNetwork; + } + + if (!string.IsNullOrWhiteSpace(subnet)) + { + parameters.Properties.Subnet = subnet; + } + + if (!string.IsNullOrWhiteSpace(staticIP)) + { + parameters.Properties.StaticIP = staticIP; + } + RedisCreateOrUpdateResponse response = _client.Redis.CreateOrUpdate(resourceGroupName: resourceGroupName, name: cacheName, parameters: parameters); return response; } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs index 033fc115d567..f4c27351d0d5 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Models/SizeConverter.cs @@ -14,15 +14,17 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { - public static class SizeConverter + using System.Collections.Generic; + + internal static class SizeConverter { - public const string C0 = "250MB"; - public const string C1 = "1GB"; - public const string C2 = "2.5GB"; - public const string C3 = "6GB"; - public const string C4 = "13GB"; - public const string C5 = "26GB"; - public const string C6 = "53GB"; + public const string MB250 = "250MB"; + public const string GB1 = "1GB"; + public const string GB2_5 = "2.5GB"; + public const string GB6 = "6GB"; + public const string GB13 = "13GB"; + public const string GB26 = "26GB"; + public const string GB53 = "53GB"; public const string C0String = "C0"; public const string C1String = "C1"; @@ -32,68 +34,86 @@ public static class SizeConverter public const string C5String = "C5"; public const string C6String = "C6"; - public static string GetSizeInRedisSpecificFormat(string actualSizeFromUser) + public const string P1String = "P1"; + public const string P2String = "P2"; + public const string P3String = "P3"; + public const string P4String = "P4"; + + private static Dictionary skuStringToActualSize = new Dictionary{ + { C0String, MB250 }, + { C1String, GB1 }, + { C2String, GB2_5 }, + { C3String, GB6 }, + { C4String, GB13 }, + { C5String, GB26 }, + { C6String, GB53 }, + { P1String, GB6 }, + { P2String, GB13 }, + { P3String, GB26 }, + { P4String, GB53 } + }; + + public static string GetSizeInRedisSpecificFormat(string actualSizeFromUser, bool isPremiumCache) { switch(actualSizeFromUser) { // accepting actual sizes - case C0: + case MB250: return C0String; - case C1: + case GB1: return C1String; - case C2: + case GB2_5: return C2String; - case C3: - return C3String; - case C4: - return C4String; - case C5: - return C5String; - case C6: - return C6String; + case GB6: + if(isPremiumCache) + { + return P1String; + } + else + { + return C3String; + } + case GB13: + if(isPremiumCache) + { + return P2String; + } + else + { + return C4String; + } + case GB26: + if (isPremiumCache) + { + return P3String; + } + else + { + return C5String; + } + case GB53: + if (isPremiumCache) + { + return P4String; + } + else + { + return C6String; + } // accepting C0, C1 etc. - case C0String: - return C0String; - case C1String: - return C1String; - case C2String: - return C2String; - case C3String: - return C3String; - case C4String: - return C4String; - case C5String: - return C5String; - case C6String: - return C6String; default: - return C1String; + return actualSizeFromUser; } } public static string GetSizeInUserSpecificFormat(string skuFamily, int skuCapacity) { string sizeConstant = skuFamily + skuCapacity.ToString(); - switch (sizeConstant) - { - // accepting C0, C1 etc. - case C0String: - return C0; - case C1String: - return C1; - case C2String: - return C2; - case C3String: - return C3; - case C4String: - return C4; - case C5String: - return C5; - case C6String: - return C6; - default: - return C1; + if (skuStringToActualSize.ContainsKey(sizeConstant)) + { + return skuStringToActualSize[sizeConstant]; } + return null; } } } diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config index 187306319db5..ff909342b48c 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config @@ -2,9 +2,9 @@ - + - + diff --git a/src/ResourceManager/Resources/AzureRM.Resources.psd1 b/src/ResourceManager/Resources/AzureRM.Resources.psd1 index f7890b0226f7..35728df6e21c 100644 --- a/src/ResourceManager/Resources/AzureRM.Resources.psd1 +++ b/src/ResourceManager/Resources/AzureRM.Resources.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'ab3ca893-26fe-44b0-bd3c-8933df144d7b' diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj index e0fe16144eb5..fdaf07082d78 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj @@ -56,7 +56,7 @@ False - ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Resource/FindAzureResourceCmdlet.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Resource/FindAzureResourceCmdlet.cs index e01a3fb96c61..635304c9a53c 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Resource/FindAzureResourceCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Resource/FindAzureResourceCmdlet.cs @@ -101,6 +101,22 @@ public sealed class FindAzureResourceCmdlet : ResourceManagerCmdletBase [ValidateNotNullOrEmpty] public string ODataQuery { get; set; } + /// + /// Gets or sets the tag name. + /// + [Parameter(ParameterSetName = FindAzureResourceCmdlet.ListResourcesParameterSet, Mandatory = false, HelpMessage = "The name of the tag to query by.")] + [Parameter(ParameterSetName = FindAzureResourceCmdlet.MultiSubscriptionListResourcesParameterSet, Mandatory = false, HelpMessage = "The name of the tag to query by.")] + [ValidateNotNullOrEmpty] + public string TagName { get; set; } + + /// + /// Gets or sets the tag value. + /// + [Parameter(ParameterSetName = FindAzureResourceCmdlet.ListResourcesParameterSet, Mandatory = false, HelpMessage = "The value of the tag to query by.")] + [Parameter(ParameterSetName = FindAzureResourceCmdlet.MultiSubscriptionListResourcesParameterSet, Mandatory = false, HelpMessage = "The value of the tag to query by.")] + [ValidateNotNullOrEmpty] + public string TagValue { get; set; } + /// /// Gets or sets the resource group name. /// @@ -237,8 +253,8 @@ private async Task> ListResourcesTypeCollect var odataQuery = QueryFilterBuilder.CreateFilter( resourceType: null, resourceName: null, - tagName: null, - tagValue: null, + tagName: this.TagName, + tagValue: this.TagValue, filter: this.ODataQuery, resourceGroupNameContains: this.ResourceGroupNameContains, nameContains: this.ResourceGroupNameContains); @@ -264,8 +280,8 @@ private async Task> ListResourcesInTenant() resourceGroup: null, resourceType: this.ResourceType, resourceName: null, - tagName: null, - tagValue: null, + tagName: this.TagName, + tagValue: this.TagValue, filter: this.ODataQuery, resourceGroupNameContains: this.ResourceGroupNameContains, nameContains: this.ResourceNameContains); @@ -293,8 +309,8 @@ private async Task> ListResourcesInResourceG .CreateFilter( resourceType: this.ResourceType, resourceName: null, - tagName: null, - tagValue: null, + tagName: this.TagName, + tagValue: this.TagValue, filter: this.ODataQuery, resourceGroupNameContains: this.ResourceGroupNameContains, nameContains: this.ResourceNameContains); @@ -324,8 +340,8 @@ private async Task> ListResourcesInSubscript .CreateFilter( resourceType: this.ResourceType, resourceName: null, - tagName: null, - tagValue: null, + tagName: this.TagName, + tagValue: this.TagValue, filter: this.ODataQuery, nameContains: this.ResourceNameContains); @@ -466,7 +482,9 @@ private bool IsResourceGroupLevelQuery() { return this.SubscriptionId.HasValue && this.ResourceGroupNameContains != null && - (this.ResourceType != null || + (this.TagName != null || + this.TagValue != null || + this.ResourceType != null || this.ExtensionResourceType != null); } } diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config index e0ee92cae58b..4ab5059ab515 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj index 13a06dc2dca2..79926ec5e53d 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ProviderTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ProviderTests.ps1 index 5e0f0902e2e8..4a779ce4ca28 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ProviderTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ProviderTests.ps1 @@ -53,17 +53,17 @@ function Test-AzureProvider #> function Test-AzureProviderOperation { - # Get all actions by all providers + # Get all operations by all providers $allActions = Get-AzureRmProviderOperation * Assert-True { $allActions.Length -gt 0 } - # Get all actions of microsoft.insights provider + # Get all operations of microsoft.insights provider $insightsActions = Get-AzureRmProviderOperation Microsoft.Insights/* $insightsActions Assert-True { $insightsActions.Length -gt 0 } Assert-True { $allActions.Length -gt $insightsActions.Length } - # Filter non-Microsoft.Insights actions and match the lengths + # Filter non-Microsoft.Insights operations and match the lengths $nonInsightsActions = $allActions | Where-Object { $_.Operation.ToLower().StartsWith("microsoft.insights/") -eq $false } $actualLength = $allActions.Length - $nonInsightsActions.Length; $expectedLength = $insightsActions.Length; @@ -83,7 +83,7 @@ function Test-AzureProviderOperation Assert-True { $action.Operation.ToLower().Startswith("microsoft.insights/"); } } - # Get all Read actions of microsoft.insights provider + # Get all Read operations of microsoft.insights provider $insightsReadActions = Get-AzureRmProviderOperation Microsoft.Insights/*/read Assert-True { $insightsReadActions.Length -gt 0 } Assert-True { $insightsActions.Length -gt $insightsReadActions.Length } @@ -93,7 +93,7 @@ function Test-AzureProviderOperation Assert-True { $action.Operation.ToLower().StartsWith("microsoft.insights/");} } - # Get all Read actions of all providers + # Get all Read operations of all providers $readActions = Get-AzureRmProviderOperation */read Assert-True { $readActions.Length -gt 0 } Assert-True { $readActions.Length -lt $allActions.Length } @@ -104,18 +104,30 @@ function Test-AzureProviderOperation Assert-True { $action.Operation.ToLower().EndsWith("/read"); } } - # Get a particular action + # Get a particular operation $action = Get-AzureRmProviderOperation Microsoft.OperationalInsights/workspaces/usages/read Assert-AreEqual $action.Operation.ToLower() "Microsoft.OperationalInsights/workspaces/usages/read".ToLower(); - # Get an invalid action + # Get an invalid operation $action = Get-AzureRmProviderOperation Microsoft.OperationalInsights/workspaces/usages/read/123 Assert-True { $action.Length -eq 0 } - # Get actions for non-existing provider + # Get operations for non-existing provider $exceptionMessage = "ProviderNotFound: Provider NonExistentProvider not found."; Assert-Throws { Get-AzureRmProviderOperation NonExistentProvider/* } $exceptionMessage - # Get action for non-existing provider + # Get operations for non-existing provider Assert-Throws { Get-AzureRmProviderOperation NonExistentProvider/servers/read } $exceptionMessage + + # Get operations with invalid search string parts + $exceptionMessage = "Individual parts in the search string should either equal * or not contain *."; + Assert-Throws {Get-AzureRmProviderOperation Microsoft.ClassicCompute/virtual*/read } $exceptionMessage + + # Get operations with invalid provider name + $exceptionMessage = "To get all operations under Microsoft.Sql, please specify the search string as Microsoft.Sql/*."; + Assert-Throws {Get-AzureRmProviderOperation Microsoft.Sql } $exceptionMessage + + # Get operations with ? in search string + $exceptionMessage = "Wildcard character ? is not supported."; + Assert-Throws {Get-AzureRmProviderOperation Microsoft.Sql/servers/*/rea? } $exceptionMessage } \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ProviderTests/TestAzureProviderOperation.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ProviderTests/TestAzureProviderOperation.json index ef8abce122eb..7f6350efc9a2 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ProviderTests/TestAzureProviderOperation.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ProviderTests/TestAzureProviderOperation.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"displayName\": \"Microsoft Domains\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/generateSsoRequest/Action\",\r\n \"displayName\": \"Generate Domain Control Center Single Sign On Request\",\r\n \"description\": \"Generate a request for signing into domain control center.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action\",\r\n \"displayName\": \"Domain Purchase Info Validation\",\r\n \"description\": \"Validate domain purchase object without submitting it\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/checkDomainAvailability/Action\",\r\n \"displayName\": \"Check Domain Availablity\",\r\n \"description\": \"Check if a domain is available for purchase\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/listDomainRecommendations/Action\",\r\n \"displayName\": \"Retrieve Domain Recommendations\",\r\n \"description\": \"Retrieve the list domain recommendations based on keywords\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"domains\",\r\n \"displayName\": \"Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Read\",\r\n \"displayName\": \"Get Domains\",\r\n \"description\": \"Get the list of domains\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Write\",\r\n \"displayName\": \"Add or Update Domain\",\r\n \"description\": \"Add a new Domain or update an existing one\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Delete\",\r\n \"displayName\": \"Delete Domain\",\r\n \"description\": \"Delete an existing domain.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domains/operationresults\",\r\n \"displayName\": \"Domain operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/operationresults/Read\",\r\n \"displayName\": \"Get Domain Operation\",\r\n \"description\": \"Get a domain operation\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DomainRegistration\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DomainRegistration\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicCompute\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/checkDomainNameAvailability/action\",\r\n \"displayName\": \"Availability For A Domain Name\",\r\n \"description\": \"Checks the availability of a given domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"resourceTypes/skus\",\r\n \"displayName\": \"Sku\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/resourceTypes/skus/read\",\r\n \"displayName\": \"Get Supported Skus\",\r\n \"description\": \"Gets the Sku list for supported resource types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames\",\r\n \"displayName\": \"Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/read\",\r\n \"displayName\": \"Gets Domain Names\",\r\n \"description\": \"Return the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/write\",\r\n \"displayName\": \"Add Domain Names\",\r\n \"description\": \"Add or modify the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/delete\",\r\n \"displayName\": \"Remove Domain Names\",\r\n \"description\": \"Remove the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/swap/action\",\r\n \"displayName\": \"Swap Staging And Production Slots\",\r\n \"description\": \"Swaps the staging slot to the production slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates\",\r\n \"displayName\": \"Service Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/read\",\r\n \"displayName\": \"Get The Certificates\",\r\n \"description\": \"Returns the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/write\",\r\n \"displayName\": \"Add Service Certificates\",\r\n \"description\": \"Add or modify the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/delete\",\r\n \"displayName\": \"Delete Service Certificates\",\r\n \"description\": \"Delete the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions\",\r\n \"displayName\": \"Domain Name Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/read\",\r\n \"displayName\": \"Get The Domain Name Extensions\",\r\n \"description\": \"Returns the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/write\",\r\n \"displayName\": \"Add Domain Name Extensions\",\r\n \"description\": \"Add the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/delete\",\r\n \"displayName\": \"Remove Domain Name Extensions\",\r\n \"description\": \"Remove the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/active\",\r\n \"displayName\": \"Active Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/active/write\",\r\n \"displayName\": \"Set Active Domain Name\",\r\n \"description\": \"Sets the active domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots\",\r\n \"displayName\": \"Deployment Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/read\",\r\n \"displayName\": \"Get Deploymen Slots\",\r\n \"description\": \"Shows the deployment slots.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/write\",\r\n \"displayName\": \"Create Deployment Slot\",\r\n \"description\": \"Creates or update the deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/delete\",\r\n \"displayName\": \"Delete Deployment Slot\",\r\n \"description\": \"Deletes a given deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/start/action\",\r\n \"displayName\": \"Start Deployment Slot\",\r\n \"description\": \"Starts a deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/stop/action\",\r\n \"displayName\": \"Suspend Deployment Slot\",\r\n \"description\": \"Suspends the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles\",\r\n \"displayName\": \"Deployment Slot Role\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/read\",\r\n \"displayName\": \"Get Deployment Slot Role\",\r\n \"description\": \"Get the role for the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences\",\r\n \"displayName\": \"Deployment Slot Role Extension Reference\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/read\",\r\n \"displayName\": \"Get Deployment Slot Role Extension Reference\",\r\n \"description\": \"Returns the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/write\",\r\n \"displayName\": \"Add Deployment Slot Role Extension Reference\",\r\n \"description\": \"Add or modify the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/delete\",\r\n \"displayName\": \"Remove Deployment Slot Role Extension Reference\",\r\n \"description\": \"Remove the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances\",\r\n \"displayName\": \"Role Instance\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/read\",\r\n \"displayName\": \"Get Role Instance\",\r\n \"description\": \"Get the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/restart/action\",\r\n \"displayName\": \"Restart Role Instance\",\r\n \"description\": \"Restarts role instances.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/reimage/action\",\r\n \"displayName\": \"Reimage Role Instance\",\r\n \"description\": \"Reimages the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/start\",\r\n \"displayName\": \"Deployment Slot Start\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/start/write\",\r\n \"displayName\": \"Stop Deployment State\",\r\n \"description\": \"Changes the deployment slot state to stopped.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/stop\",\r\n \"displayName\": \"Deployment Slot Stopped\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/stop/write\",\r\n \"displayName\": \"Start Deployment State\",\r\n \"description\": \"Changes the deployment slot state to started.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/upgradeDomain\",\r\n \"displayName\": \"Upgrade Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/upgradeDomain/write\",\r\n \"displayName\": \"Upgrade The Domain\",\r\n \"description\": \"Walk upgrade the domain.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers\",\r\n \"displayName\": \"Internal Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/read\",\r\n \"displayName\": \"Get Internal Load Balancers.\",\r\n \"description\": \"Gets the internal load balancers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/write\",\r\n \"displayName\": \"Create Internal Load Balance\",\r\n \"description\": \"Creates a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/delete\",\r\n \"displayName\": \"Remove Internal Load Balance\",\r\n \"description\": \"Remove a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets\",\r\n \"displayName\": \"Load Balanced Endpoint Sets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/read\",\r\n \"displayName\": \"Get Load Balanced Endpoint Sets\",\r\n \"description\": \"Shows the load balanced endpoint sets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/availabilitySets\",\r\n \"displayName\": \"Availability Set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/availabilitySets/read\",\r\n \"displayName\": \"Show Availability Set\",\r\n \"description\": \"Show the availability set for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines\",\r\n \"displayName\": \"Virtual Machine\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/read\",\r\n \"displayName\": \"Retrieve Virtual Machines\",\r\n \"description\": \"Retrieves list of virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/write\",\r\n \"displayName\": \"Add Virtual Machines\",\r\n \"description\": \"Add or modify virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/delete\",\r\n \"displayName\": \"Remove Virtual Machines\",\r\n \"description\": \"Removes virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/start/action\",\r\n \"displayName\": \"Start Virtual Machine\",\r\n \"description\": \"Start the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/restart/action\",\r\n \"displayName\": \"Restart Virtual Machine\",\r\n \"description\": \"Restarts virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/stop/action\",\r\n \"displayName\": \"Stop Virtual Machine\",\r\n \"description\": \"Stops the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/shutdown/action\",\r\n \"displayName\": \"Shutdown Virtual Machine\",\r\n \"description\": \"Shutdown the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/attachDisk/action\",\r\n \"displayName\": \"Attach Data Disk\",\r\n \"description\": \"Attaches a data disk to a virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/detachDisk/action\",\r\n \"displayName\": \"Detach Data Disk\",\r\n \"description\": \"Detaches a data disk from virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/downloadRemoteDesktopConnectionFile/action\",\r\n \"displayName\": \"Download RDP File\",\r\n \"description\": \"Downloads the RDP file for virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions\",\r\n \"displayName\": \"Virtual Machine Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/read\",\r\n \"displayName\": \"Get Virtual Machine Extension\",\r\n \"description\": \"Gets the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/write\",\r\n \"displayName\": \"Add Virtual Machine Extension\",\r\n \"description\": \"Puts the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/asyncOperations\",\r\n \"displayName\": \"Virtual Machine Async Operations\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/asyncOperations/read\",\r\n \"displayName\": \"Async Operations\",\r\n \"description\": \"Gets the possible async operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/disks\",\r\n \"displayName\": \"Virtual Machine Disk\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/disks/read\",\r\n \"displayName\": \"Get Data Disks\",\r\n \"description\": \"Retrives list of data disks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicCompute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicCompute\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft SQL Database\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"servers\",\r\n \"displayName\": \"Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/import/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/upgrade/action\",\r\n \"displayName\": \"Upgrade server version\",\r\n \"description\": \"Enable new functionality available on the latest version of server and specify databases edition conversion map\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/operationResults\",\r\n \"displayName\": \"Server Upgrade Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/read\",\r\n \"displayName\": \"Get status of server upgrade operation\",\r\n \"description\": \"Operation is used to track progress of server upgrade from lower version to higher\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/delete\",\r\n \"displayName\": \"Cancel server upgrade\",\r\n \"description\": \"Abort server version upgrade in progress\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recoverableDatabases\",\r\n \"displayName\": \"Recoverable Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recoverableDatabases/read\",\r\n \"displayName\": \"Get the last known database recovery point\",\r\n \"description\": \"This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/serviceObjectives\",\r\n \"displayName\": \"Service Level Objective\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/serviceObjectives/read\",\r\n \"displayName\": \"Get service level objectives\",\r\n \"description\": \"Retrieve list of service level objectives (also known as performance tiers) available on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/firewallRules\",\r\n \"displayName\": \"Server Firewall Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/read\",\r\n \"displayName\": \"Get server firewall rules\",\r\n \"description\": \"Retrieve server firewall rule details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/write\",\r\n \"displayName\": \"Create new or update existing server firewall rule\",\r\n \"description\": \"Create or update server firewall rule that controls IP address range allowed to connect to the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/delete\",\r\n \"displayName\": \"Delete server firewall rule\",\r\n \"description\": \"Delete firewall rule from the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools\",\r\n \"displayName\": \"Recommended Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/read\",\r\n \"displayName\": \"Get recommended elastic database pools\",\r\n \"description\": \"Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historica resource utilization\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/metrics\",\r\n \"displayName\": \"Recommended Elastic Database Pool Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/metrics/read\",\r\n \"displayName\": \"Get recommended elastic database pools metrics\",\r\n \"description\": \"Retrieve metrics for recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/databases\",\r\n \"displayName\": \"Recommended Elastic Pool Databases\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/databases/read\",\r\n \"displayName\": \"Get recommended elastic pools databases\",\r\n \"description\": \"Retrieve databases that should be added into recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools\",\r\n \"displayName\": \"Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/read\",\r\n \"displayName\": \"Get elastic database pool details\",\r\n \"description\": \"Retrieve details of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/write\",\r\n \"displayName\": \"Create new or update existing elastic database pool\",\r\n \"description\": \"Create a new or change properties of existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/delete\",\r\n \"displayName\": \"Delete elastic database pool\",\r\n \"description\": \"Delete existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metricDefinitions\",\r\n \"displayName\": \"Elastic Database Pool Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metricDefinitions/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metric definitions\",\r\n \"description\": \"Return types of resource utilization metrics that are available for elastic database pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metrics\",\r\n \"displayName\": \"Elastic Database Pool Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metrics/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metrics\",\r\n \"description\": \"Return elastic database pool resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"displayName\": \"Elastic Pool Database Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read\",\r\n \"displayName\": \"Get elastic pool database activity\",\r\n \"description\": \"Retrieve activities and details on a given database that is part of elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolActivity\",\r\n \"displayName\": \"Elastic Database Pool Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read\",\r\n \"displayName\": \"Get elastic database pool activity\",\r\n \"description\": \"Retrieve activities and details on a given elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/databases/read\",\r\n \"displayName\": \"Get elastic pool databases\",\r\n \"description\": \"Retrieve list and details of databases that are part of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/usages\",\r\n \"displayName\": \"Server Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/usages/read\",\r\n \"displayName\": \"Get server usage details\",\r\n \"description\": \"Return server DTU quota and current DTU consuption by all databases within the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/restorableDroppedDatabases\",\r\n \"displayName\": \"Restorable Dropped Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/restorableDroppedDatabases/read\",\r\n \"displayName\": \"Get list of restorable dropped databases\",\r\n \"description\": \"Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/export/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/operationResults\",\r\n \"displayName\": \"Database Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/operationResults/read\",\r\n \"displayName\": \"Get status of database operation\",\r\n \"description\": \"Operation is used to track progress of long running database operation, such as scale.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/replicationLinks\",\r\n \"displayName\": \"Database Replication Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"displayName\": \"Get database replication links\",\r\n \"description\": \"Return a details about replication links established for a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\",\r\n \"displayName\": \"Terminate database replication\",\r\n \"description\": \"Terminate replication of a particular database with ability to specify whether link is terminated forcefully or gracefully\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"displayName\": \"Force-terminate database replication\",\r\n \"description\": \"Force-terminate database replication\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies\",\r\n \"displayName\": \"Database Data Masking Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/read\",\r\n \"displayName\": \"Get database data masking policy\",\r\n \"description\": \"Retrieve details of the data masking policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/write\",\r\n \"displayName\": \"Set database data masking policy\",\r\n \"description\": \"Change data masking policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"displayName\": \"Database Data Masking Policy Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read\",\r\n \"displayName\": \"Get database data masking policy rule\",\r\n \"description\": \"Retrieve details of the data masking policy rule configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write\",\r\n \"displayName\": \"Set database data masking policy rule\",\r\n \"description\": \"Change data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/delete\",\r\n \"displayName\": \"Delete database data masking policy rule\",\r\n \"description\": \"Delete data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metricDefinitions\",\r\n \"displayName\": \"Database Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metricDefinitions/read\",\r\n \"displayName\": \"Get database resource consumption metric definitions\",\r\n \"description\": \"Return types of metrics that are available for databases to indicate resource consuption that can be alerted on\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries\",\r\n \"displayName\": \"Database Top Queries\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/read\",\r\n \"displayName\": \"Get Top Queries for the database\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/queryText\",\r\n \"displayName\": \"Database Top Queries query text\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/queryText/read\",\r\n \"displayName\": \"Get Database Top Queries query text\",\r\n \"description\": \"Returns the Transact-SQL text for selected query ID\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/statistics\",\r\n \"displayName\": \"Database Top Queries Statistics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/statistics/read\",\r\n \"displayName\": \"Get Database Top Queries statistics\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/connectionPolicies\",\r\n \"displayName\": \"Database Connection Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/read\",\r\n \"displayName\": \"Get database connection policy\",\r\n \"description\": \"Retrieve details of the connection policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/write\",\r\n \"displayName\": \"Set database connection policy\",\r\n \"description\": \"Change connection policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metrics\",\r\n \"displayName\": \"Database Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metrics/read\",\r\n \"displayName\": \"Get database resource consumption metrics\",\r\n \"description\": \"Return database resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/transparentDataEncryption\",\r\n \"displayName\": \"Database Transparent Data Encryption\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/read\",\r\n \"displayName\": \"Get database transparent data encryption details\",\r\n \"description\": \"Retrieve status and details of transparent data encryption security feature for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/write\",\r\n \"displayName\": \"Change transparent data encryption state\",\r\n \"description\": \"Enable or disable transparent data encryption for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/auditingPolicies\",\r\n \"displayName\": \"Database Auditing Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/read\",\r\n \"displayName\": \"Get database auditing policy\",\r\n \"description\": \"Retrieve details of the auditing policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/write\",\r\n \"displayName\": \"Set database auditing policy\",\r\n \"description\": \"Change auditing policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/serviceTierAdvisors\",\r\n \"displayName\": \"Database Service Tier Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors/read\",\r\n \"displayName\": \"Get recommended database performance level\",\r\n \"description\": \"Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/usages\",\r\n \"displayName\": \"Database Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/usages/read\",\r\n \"displayName\": \"Get database usage details\",\r\n \"description\": \"Return database maxiumum size that can be reached and current size occupied by data\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/queryStore\",\r\n \"displayName\": \"Query Store settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/read\",\r\n \"displayName\": \"Get Query Store settings\",\r\n \"description\": \"Returns current values of Query Store settings for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/write\",\r\n \"displayName\": \"Update Query Store settings\",\r\n \"description\": \"Updates Query Store setting for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/recommendedIndexes\",\r\n \"displayName\": \"Recommended Index\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read\",\r\n \"displayName\": \"Get list of index recommendations\",\r\n \"description\": \"Retrieve list of index recommendations on a database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write\",\r\n \"displayName\": \"Update Recommended Index State\",\r\n \"description\": \"Apply index recommendation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/columns\",\r\n \"displayName\": \"Database table column\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"displayName\": \"Get columns\",\r\n \"description\": \"Retrieve list of columns of a table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/missingindexes\",\r\n \"displayName\": \"Database Index Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/read\",\r\n \"displayName\": \"Get recommended database indexes\",\r\n \"description\": \"Return suggestions about database indexes to create, modify or delete in order to improve query performance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/write\",\r\n \"displayName\": \"Apply recommended database index\",\r\n \"description\": \"Use database index recommendation in a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/importExportOperationResults\",\r\n \"displayName\": \"Database Import/Export Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import or export operation on the server\",\r\n \"description\": \"Return details about database import or export operation from DacPac located in storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/importExportOperationResults\",\r\n \"displayName\": \"Server Database Import Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import operation on the server\",\r\n \"description\": \"Return the list with details for database import operations from storage account on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Sql\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Sql\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft API Management\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/checkNameAvailability/action\",\r\n \"displayName\": \"Check Name Availability\",\r\n \"description\": \"Checks if provided service name is available\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"service\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/write\",\r\n \"displayName\": \"Create a new instance of API Management Service\",\r\n \"description\": \"Create a new instance of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/read\",\r\n \"displayName\": \"Read metadata for an API Management Service instance\",\r\n \"description\": \"Read metadata for an API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/delete\",\r\n \"displayName\": \"Delete API Management Service instance\",\r\n \"description\": \"Delete API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"displayName\": \"Update domain names\",\r\n \"description\": \"Setup, update or remove custom domain names for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"displayName\": \"Upload SSL certificate\",\r\n \"description\": \"Upload SSL certificate for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/checkcustomhostname/action\",\r\n \"displayName\": \"Check hostname mapping\",\r\n \"description\": \"Checks if provided host name correctly resolves to *.azure-api.net\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/action\",\r\n \"displayName\": \"Backup API Management Service\",\r\n \"description\": \"Backup API Management Service to the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/action\",\r\n \"displayName\": \"Restore API Management Service\",\r\n \"description\": \"Restore API Management Service from the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"displayName\": \"Manage Service Deployments\",\r\n \"description\": \"Change SKU/units, add/remove regional deployments of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/action\",\r\n \"displayName\": \"Manage VPN configuration\",\r\n \"description\": \"Change VPN configuration of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/operationresults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/operationresults/read\",\r\n \"displayName\": \"Get long running operation result\",\r\n \"description\": \"Gets current status of long running operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backup/operationresults\",\r\n \"displayName\": \"Backup Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/operationresults/read\",\r\n \"displayName\": \"Get backup operation result\",\r\n \"description\": \"Gets current status of backup operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/issues\",\r\n \"displayName\": \"Collection of all API Management issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/issues/read\",\r\n \"displayName\": \"Gets all API Management issues\",\r\n \"description\": \"Gets all API Management issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/loggers\",\r\n \"displayName\": \"Logger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/read\",\r\n \"displayName\": \"Gets loggers available to the current user\",\r\n \"description\": \"Gets loggers available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/write\",\r\n \"displayName\": \"Adds a new logger\",\r\n \"description\": \"Adds a new logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/delete\",\r\n \"displayName\": \"Removes existing logger\",\r\n \"description\": \"Removes existing logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users\",\r\n \"displayName\": \"User account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/read\",\r\n \"displayName\": \"Gets registered users\",\r\n \"description\": \"Gets registered users\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/write\",\r\n \"displayName\": \"Registers a new user\",\r\n \"description\": \"Registers a new user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/delete\",\r\n \"displayName\": \"Removes user account\",\r\n \"description\": \"Removes user account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/generateSsoUrl/action\",\r\n \"displayName\": \"Execute action\",\r\n \"description\": \"Execute action\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues\",\r\n \"displayName\": \"Get user issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/read\",\r\n \"displayName\": \"Get list of all user reported issues\",\r\n \"description\": \"Get list of all user reported issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/write\",\r\n \"displayName\": \"Registers an issue to API Management\",\r\n \"description\": \"Registers an issue to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/comments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/roles\",\r\n \"displayName\": \"Security roles assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/roles/read\",\r\n \"displayName\": \"Get roles\",\r\n \"description\": \"Get roles\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/subscriptions\",\r\n \"displayName\": \"Regenerates subscription key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/read\",\r\n \"displayName\": \"Gets user subscriptions\",\r\n \"description\": \"Gets user subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/write\",\r\n \"displayName\": \"Requests subscription for a new product\",\r\n \"description\": \"Requests subscription for a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/read\",\r\n \"displayName\": \"Get list of all user applications\",\r\n \"description\": \"Get list of all user applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/write\",\r\n \"displayName\": \"Add Attachment to application\",\r\n \"description\": \"Add Attachment to application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/delete\",\r\n \"displayName\": \"Removes an attachment\",\r\n \"description\": \"Removes an attachment\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/identities\",\r\n \"displayName\": \"Collection of user credentials for different identity providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities/read\",\r\n \"displayName\": \"Get identity collection\",\r\n \"description\": \"Get identity collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/keys\",\r\n \"displayName\": \"Shared access key set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/keys/read\",\r\n \"displayName\": \"Gets user keys\",\r\n \"description\": \"Gets user keys\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/groups\",\r\n \"displayName\": \"Developer groups assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/groups/read\",\r\n \"displayName\": \"Gets user groups\",\r\n \"description\": \"Gets user groups\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/settings\",\r\n \"displayName\": \"Tenant settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/read\",\r\n \"displayName\": \"Get tenant's settings\",\r\n \"description\": \"Get tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/write\",\r\n \"displayName\": \"Update tenant's settings\",\r\n \"description\": \"Update tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/policy\",\r\n \"displayName\": \"Tenant-level policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/save/action\",\r\n \"displayName\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"description\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/deploy/action\",\r\n \"displayName\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"description\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/validate/action\",\r\n \"displayName\": \"Validates changes from the specified branch\",\r\n \"description\": \"Validates changes from the specified branch\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration/operationResults\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/operationResults/read\",\r\n \"displayName\": \"Returns results of operations\",\r\n \"description\": \"Returns results of operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access\",\r\n \"displayName\": \"Tenant access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access/git\",\r\n \"displayName\": \"Tenant git access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managedeployments/operationresults\",\r\n \"displayName\": \"Manage Deployments Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/operationresults/read\",\r\n \"displayName\": \"Get manage deployments operation result\",\r\n \"description\": \"Gets current status of manage deployments operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/subscriptions\",\r\n \"displayName\": \"Product subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"displayName\": \"Gets product subscriptions\",\r\n \"description\": \"Gets product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/write\",\r\n \"displayName\": \"Subscribes user to the product\",\r\n \"description\": \"Subscribes user to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/delete\",\r\n \"displayName\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"description\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managevpn/operationresults\",\r\n \"displayName\": \"Manage VPN Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/operationresults/read\",\r\n \"displayName\": \"Get manage VPN operation result\",\r\n \"description\": \"Gets current status of manage VPN operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/read\",\r\n \"displayName\": \"Gets all all API Management applications\",\r\n \"description\": \"Gets all all API Management applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications/attachments\",\r\n \"displayName\": \"Application Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backends\",\r\n \"displayName\": \"Backend\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/read\",\r\n \"displayName\": \"Gets backends available to the current user\",\r\n \"description\": \"Gets backends available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/write\",\r\n \"displayName\": \"Adds a new backend\",\r\n \"description\": \"Adds a new backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/delete\",\r\n \"displayName\": \"Removes existing backend\",\r\n \"description\": \"Removes existing backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis\",\r\n \"displayName\": \"API\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/read\",\r\n \"displayName\": \"Get registered APIs\",\r\n \"description\": \"Get registered APIs\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/write\",\r\n \"displayName\": \"Create new API\",\r\n \"description\": \"Create new API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/delete\",\r\n \"displayName\": \"Remove API\",\r\n \"description\": \"Remove API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues\",\r\n \"displayName\": \"API issue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/read\",\r\n \"displayName\": \"Get Issues associated with API\",\r\n \"description\": \"Get Issues associated with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/write\",\r\n \"displayName\": \"Updates issue details\",\r\n \"description\": \"Updates issue details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/delete\",\r\n \"displayName\": \"Removes existing issue\",\r\n \"description\": \"Removes existing issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/comments\",\r\n \"displayName\": \"Issue Comments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/read\",\r\n \"displayName\": \"Gets issue comments\",\r\n \"description\": \"Gets issue comments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/attachments\",\r\n \"displayName\": \"Issue Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/read\",\r\n \"displayName\": \"Gets issue attachments\",\r\n \"description\": \"Gets issue attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/products\",\r\n \"displayName\": \"API associated products\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/products/read\",\r\n \"displayName\": \"Get associated Products with API\",\r\n \"description\": \"Get associated Products with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/policy\",\r\n \"displayName\": \"API policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations\",\r\n \"displayName\": \"API operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/read\",\r\n \"displayName\": \"Get API operations\",\r\n \"description\": \"Get API operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/write\",\r\n \"displayName\": \"Create new API operation\",\r\n \"description\": \"Create new API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/delete\",\r\n \"displayName\": \"Remove API operation\",\r\n \"description\": \"Remove API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations/policy\",\r\n \"displayName\": \"Operation policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas\",\r\n \"displayName\": \"API Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/read\",\r\n \"displayName\": \"Gets all the schemas stored for a given API\",\r\n \"description\": \"Gets all the schemas stored for a given API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/write\",\r\n \"displayName\": \"Sets the Schemas used by the API\",\r\n \"description\": \"Sets the Schemas used by the API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/delete\",\r\n \"displayName\": \"Removes existing Schema\",\r\n \"description\": \"Removes existing Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas/document\",\r\n \"displayName\": \"Document describing the API schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/read\",\r\n \"displayName\": \"Get the document describing the Schema\",\r\n \"description\": \"Get the document describing the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/write\",\r\n \"displayName\": \"Update the document for the Schema\",\r\n \"description\": \"Update the document for the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products\",\r\n \"displayName\": \"Product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/read\",\r\n \"displayName\": \"Gets products available to current user\",\r\n \"description\": \"Gets products available to current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/write\",\r\n \"displayName\": \"Creates a new product\",\r\n \"description\": \"Creates a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/delete\",\r\n \"displayName\": \"Removes existing product\",\r\n \"description\": \"Removes existing product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/subscriptions\",\r\n \"displayName\": \"Product subscriptions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptions/read\",\r\n \"displayName\": \"Get product subscriptions\",\r\n \"description\": \"Get product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/apis\",\r\n \"displayName\": \"API added to product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/read\",\r\n \"displayName\": \"Gets APIs included into the product\",\r\n \"description\": \"Gets APIs included into the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/write\",\r\n \"displayName\": \"Add API to product\",\r\n \"description\": \"Add API to product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/delete\",\r\n \"displayName\": \"Remove API from product\",\r\n \"description\": \"Remove API from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/policy\",\r\n \"displayName\": \"Product policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/groups\",\r\n \"displayName\": \"Assigned developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/read\",\r\n \"displayName\": \"Gets groups assigned to the product\",\r\n \"description\": \"Gets groups assigned to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/write\",\r\n \"displayName\": \"Assigns group to the product\",\r\n \"description\": \"Assigns group to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/delete\",\r\n \"displayName\": \"Removes group assignment from product\",\r\n \"description\": \"Removes group assignment from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/updatehostname/operationresults\",\r\n \"displayName\": \"Update Hostnames Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/operationresults/read\",\r\n \"displayName\": \"Get update hostnames operation result\",\r\n \"description\": \"Gets current status of update hostnames operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policySnippets\",\r\n \"displayName\": \"Collection of policy snippets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policySnippets/read\",\r\n \"displayName\": \"Get snippets\",\r\n \"description\": \"Get snippets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/read\",\r\n \"displayName\": \"Gets certificates available to the current user\",\r\n \"description\": \"Gets certificates available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/write\",\r\n \"displayName\": \"Adds a new certificate\",\r\n \"description\": \"Adds a new certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/delete\",\r\n \"displayName\": \"Removes existing certificate\",\r\n \"description\": \"Removes existing certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/templates\",\r\n \"displayName\": \"API Management email template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/read\",\r\n \"displayName\": \"Gets all email templates\",\r\n \"description\": \"Gets all email templates\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/write\",\r\n \"displayName\": \"Updates email template\",\r\n \"description\": \"Updates email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/delete\",\r\n \"displayName\": \"Reset existing email template\",\r\n \"description\": \"Reset existing email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/regions\",\r\n \"displayName\": \"Service Regions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/regions/read\",\r\n \"displayName\": \"Gets service regions\",\r\n \"description\": \"Gets service regions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policyChecks\",\r\n \"displayName\": \"Collection of policy checks\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policyChecks/read\",\r\n \"displayName\": \"Get policy checks\",\r\n \"description\": \"Get policy checks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/restore/operationresults\",\r\n \"displayName\": \"Restore Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/operationresults/read\",\r\n \"displayName\": \"Get restore operation result\",\r\n \"description\": \"Gets current status of restore operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/properties\",\r\n \"displayName\": \"Configuration property\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/read\",\r\n \"displayName\": \"Gets list of all properties\",\r\n \"description\": \"Gets list of all properties\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/write\",\r\n \"displayName\": \"Creates a new property\",\r\n \"description\": \"Creates a new property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/delete\",\r\n \"displayName\": \"Removes existing property\",\r\n \"description\": \"Removes existing property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups\",\r\n \"displayName\": \"Developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/read\",\r\n \"displayName\": \"Gets existing groups details\",\r\n \"description\": \"Gets existing groups details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/write\",\r\n \"displayName\": \"Creates a new group\",\r\n \"description\": \"Creates a new group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/delete\",\r\n \"displayName\": \"Removes existing group\",\r\n \"description\": \"Removes existing group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups/users\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/read\",\r\n \"displayName\": \"Gets group members\",\r\n \"description\": \"Gets group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/write\",\r\n \"displayName\": \"Includes user in the group\",\r\n \"description\": \"Includes user in the group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/delete\",\r\n \"displayName\": \"Removes user from group members\",\r\n \"description\": \"Removes user from group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/getssotoken\",\r\n \"displayName\": \"SSO Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/getssotoken/read\",\r\n \"displayName\": \"Get SSO token\",\r\n \"description\": \"Gets SSO token that can be used to login into API Management Service portal as an administrator\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/authorizationServers\",\r\n \"displayName\": \"OAuth Authorization Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"displayName\": \"Get authorization servers list\",\r\n \"description\": \"Get authorization servers list\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/write\",\r\n \"displayName\": \"Creates a new authorization server\",\r\n \"description\": \"Creates a new authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/delete\",\r\n \"displayName\": \"Removes authorization server\",\r\n \"description\": \"Removes authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications\",\r\n \"displayName\": \"Azure Active Directory Application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/read\",\r\n \"displayName\": \"Gets all Azure Active Directory Applications\",\r\n \"description\": \"Gets all Azure Active Directory Applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory Application\",\r\n \"description\": \"Registers a new Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/delete\",\r\n \"displayName\": \"Removes Azure Active Directory Application\",\r\n \"description\": \"Removes Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications/directories\",\r\n \"displayName\": \"Azure Active Directory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/read\",\r\n \"displayName\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"description\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory\",\r\n \"description\": \"Registers a new Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/delete\",\r\n \"displayName\": \"Removes Azure Active Directory\",\r\n \"description\": \"Removes Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applicationCategory\",\r\n \"displayName\": \"CAPI Management application categories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applicationCategory/read\",\r\n \"displayName\": \"Gets all Application categories\",\r\n \"description\": \"Gets all Application categories\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ApiManagement\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ApiManagement\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure ServiceBus\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/write\",\r\n \"displayName\": \"Create or Update Relay\",\r\n \"description\": \"Create or Update Relay properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/read\",\r\n \"displayName\": \"Get Relay\",\r\n \"description\": \"Get list of Relay Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/Delete\",\r\n \"displayName\": \"Delete Relay\",\r\n \"description\": \"Operation to delete Relay Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/action\",\r\n \"displayName\": \" Get Relay Authorization Rules\",\r\n \"description\": \" Get the list of Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays/authorizationRules\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Relay Authorization Rule\",\r\n \"description\": \"Create Relay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/delete\",\r\n \"displayName\": \"Delete Relay Authorization Rules\",\r\n \"description\": \"Operation to delete Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Relay Listkeys\",\r\n \"description\": \"Get the Connection String to Relay\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/write\",\r\n \"displayName\": \"Create or Update Queue\",\r\n \"description\": \"Create or Update Queue properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/read\",\r\n \"displayName\": \"Get Queue\",\r\n \"description\": \"Get list of Queue Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/Delete\",\r\n \"displayName\": \"Delete Queue\",\r\n \"description\": \"Operation to delete Queue Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/action\",\r\n \"displayName\": \" Get Queue Authorization Rules\",\r\n \"description\": \" Get the list of Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues/authorizationRules\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Queue Authorization Rule\",\r\n \"description\": \"Create Queue Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/delete\",\r\n \"displayName\": \"Delete Queue Authorization Rules\",\r\n \"description\": \"Operation to delete Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Queue Listkeys\",\r\n \"description\": \"Get the Connection String to Queue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/write\",\r\n \"displayName\": \"Create or Update Topic\",\r\n \"description\": \"Create or Update Topic properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/read\",\r\n \"displayName\": \"Get Topic\",\r\n \"description\": \"Get list of Topic Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/Delete\",\r\n \"displayName\": \"Delete Topic\",\r\n \"description\": \"Operation to delete Topic Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/action\",\r\n \"displayName\": \" Get Topic Authorization Rules\",\r\n \"description\": \" Get the list of Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/authorizationRules\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Topic Authorization Rule\",\r\n \"description\": \"Create Topic Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/delete\",\r\n \"displayName\": \"Delete Topic Authorization Rules\",\r\n \"description\": \"Operation to delete Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Topic Listkeys\",\r\n \"description\": \"Get the Connection String to Topic\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/subscriptions\",\r\n \"displayName\": \"TopicSubscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/write\",\r\n \"displayName\": \"Create or Update TopicSubscription\",\r\n \"description\": \"Create or Update TopicSubscription properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/read\",\r\n \"displayName\": \"Get TopicSubscription\",\r\n \"description\": \"Get list of TopicSubscription Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/Delete\",\r\n \"displayName\": \"Delete TopicSubscription\",\r\n \"description\": \"Operation to delete TopicSubscription Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"premiumMessagingRegions\",\r\n \"displayName\": \"Non Resource Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/premiumMessagingRegions/read\",\r\n \"displayName\": \"Get premium messaging regions.\",\r\n \"description\": \"Get premium messaging regions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ServiceBus\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ServiceBus\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DocumentDb\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/action\",\r\n \"displayName\": \"Create database account\",\r\n \"description\": \"Create a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"databaseAccountNames\",\r\n \"displayName\": \"Database Account Names\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccountNames/read\",\r\n \"displayName\": \"Read database account names\",\r\n \"description\": \"Checks for name availability.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts\",\r\n \"displayName\": \"Database Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"displayName\": \"Read database account\",\r\n \"description\": \"Reads a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"displayName\": \"Update database account\",\r\n \"description\": \"Update a database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"displayName\": \"Delete database accounts\",\r\n \"description\": \"Deletes the database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metricDefinitions\",\r\n \"displayName\": \"Database Accoun metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metricDefinitions/read\",\r\n \"displayName\": \"Read database account metrics definitions\",\r\n \"description\": \"Reads the database account metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metrics\",\r\n \"displayName\": \"Database Account metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metrics/read\",\r\n \"displayName\": \"Read database account metrics\",\r\n \"description\": \"Reads the database account metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/usages\",\r\n \"displayName\": \"Database Account usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/usages/read\",\r\n \"displayName\": \"Read database account usages\",\r\n \"description\": \"Reads the database account usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metricDefinitions\",\r\n \"displayName\": \"Collection metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metricDefinitions/read\",\r\n \"displayName\": \"Read collection metric definitions\",\r\n \"description\": \"Reads the collection metric definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metrics\",\r\n \"displayName\": \"Collection metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metrics/read\",\r\n \"displayName\": \"Read collection metrics\",\r\n \"description\": \"Reads the collection metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/usages\",\r\n \"displayName\": \"Collection usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/usages/read\",\r\n \"displayName\": \"Read collection usages\",\r\n \"description\": \"Reads the collection usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metricDefinitions\",\r\n \"displayName\": \"Database metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metricDefinitions/read\",\r\n \"displayName\": \"Read database metric definitions\",\r\n \"description\": \"Reads the database metric definitions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metrics\",\r\n \"displayName\": \"Database metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metrics/read\",\r\n \"displayName\": \"Read database metrics\",\r\n \"description\": \"Reads the database metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/usages\",\r\n \"displayName\": \"Database usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/usages/read\",\r\n \"displayName\": \"Read database usages\",\r\n \"description\": \"Reads the database usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/readonlykeys\",\r\n \"displayName\": \"Database Account readonly keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/read\",\r\n \"displayName\": \"Read database account readonly keys\",\r\n \"description\": \"Reads the database account readonly keys.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DocumentDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DocumentDB\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Automation\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"automationAccounts\",\r\n \"displayName\": \"Azure Automation Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/configurations\",\r\n \"displayName\": \"Azure Automation Desired State Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get an Azure Automation DSC's content\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobSchedules\",\r\n \"displayName\": \"Azure Automation Job Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connectionTypes\",\r\n \"displayName\": \"Azure Automation Connection Type Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/modules\",\r\n \"displayName\": \"Azure Automation Module\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/credentials\",\r\n \"displayName\": \"Azure Automation Credential Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/certificates\",\r\n \"displayName\": \"Azure Automation Certificate Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/schedules\",\r\n \"displayName\": \"Azure Automation Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs\",\r\n \"displayName\": \"Azure Automation Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs/streams\",\r\n \"displayName\": \"Azure Automation Job Stream\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job stream\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connections\",\r\n \"displayName\": \"Azure Automation Connection Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/variables\",\r\n \"displayName\": \"Azure Automation Variable Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks\",\r\n \"displayName\": \"Azure Automation Runbook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft\",\r\n \"displayName\": \"Azure Automation Runbook Draft\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/writeContent/action\",\r\n \"displayName\": \"Write Content\",\r\n \"description\": \"Create the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/publish/action\",\r\n \"displayName\": \"Publish\",\r\n \"description\": \"Publish an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/undoEdit/action\",\r\n \"displayName\": \"Undo Edit\",\r\n \"description\": \"Undo edits to an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft/testJob\",\r\n \"displayName\": \"Azure Automation Runbook Draft Test Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/webhooks\",\r\n \"displayName\": \"Azure Automation Webhook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation webhook \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/generateUri/action\",\r\n \"displayName\": \"Generate URI\",\r\n \"description\": \"Generate a URI for an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Automation\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Automation\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft authorization\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"classicAdministrators\",\r\n \"displayName\": \"Classic subscription administrator\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"displayName\": \"Get administrator\",\r\n \"description\": \"Reads the administrators for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/write\",\r\n \"displayName\": \"Set administrator\",\r\n \"description\": \"Add or modify administrator to a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/delete\",\r\n \"displayName\": \"Delete administrator\",\r\n \"description\": \"Removes the administrator from the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locks\",\r\n \"displayName\": \"Management lock\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/read\",\r\n \"displayName\": \"Get management locks\",\r\n \"description\": \"Gets locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/write\",\r\n \"displayName\": \"Add management locks\",\r\n \"description\": \"Add locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/delete\",\r\n \"displayName\": \"Delete management locks\",\r\n \"description\": \"Delete locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"permissions\",\r\n \"displayName\": \"Permission\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/permissions/read\",\r\n \"displayName\": \"List permissions\",\r\n \"description\": \"Lists all the permissions the caller has at a given scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleDefinitions\",\r\n \"displayName\": \"Role definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"displayName\": \"Get role definition\",\r\n \"description\": \"Get information about a role definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleAssignments\",\r\n \"displayName\": \"Role assignment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/read\",\r\n \"displayName\": \"Get role assignment\",\r\n \"description\": \"Get information about a role assignment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/write\",\r\n \"displayName\": \"Create role assignment\",\r\n \"description\": \"Create a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"displayName\": \"Delete role assignment\",\r\n \"description\": \"Delete a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Authorization\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Authorization\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Storage\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/write\",\r\n \"displayName\": \"Create/Update Storage Account\",\r\n \"description\": \"Creates a storage account with the specified parameters or update the properties or tags or adds custom domain for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Deletes an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"displayName\": \"List Storage Account Keys\",\r\n \"description\": \"Returns the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"displayName\": \"Regenerate Storage Account Keys\",\r\n \"description\": \"Regenerates the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/read\",\r\n \"displayName\": \"List/Get Storage Account(s)\",\r\n \"description\": \"Returns the list of storage accounts or gets the properties for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/checknameavailability\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/checknameavailability/read\",\r\n \"displayName\": \"Check Account Name Availability\",\r\n \"description\": \"Checks that account name is valid and is not in use.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/usages\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/usages/read\",\r\n \"displayName\": \"Get Subscription Usages\",\r\n \"description\": \"Returns the limit and the current usage count for resources in the specified subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Storage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/register/action\",\r\n \"displayName\": \"Register Subscription\",\r\n \"description\": \"Registers the subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"dnszones\",\r\n \"displayName\": \"DNS Zone\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/read\",\r\n \"displayName\": \"Get DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/write\",\r\n \"displayName\": \"Create or Update DNS Zone\",\r\n \"description\": \"Create or update a DNS zone within a resource group. Used to update the tags on a DNS zone resource. Note that this command can not be used to create or update record sets within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/delete\",\r\n \"displayName\": \"Delete DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/MX\",\r\n \"displayName\": \"DNS MX RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/read\",\r\n \"displayName\": \"Get RecordSet MX\",\r\n \"description\": \"Get the record set of type ‘MX’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/write\",\r\n \"displayName\": \"Create or update RecordSet MX\",\r\n \"description\": \"Create or update a record set of type ‘MX’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/delete\",\r\n \"displayName\": \"Delete RecordSet MX\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/AAAA\",\r\n \"displayName\": \"DNS AAAA RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/read\",\r\n \"displayName\": \"Get RecordSet AAAA\",\r\n \"description\": \"Get the record set of type ‘AAAA’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/write\",\r\n \"displayName\": \"Create or update RecordSet AAAA\",\r\n \"description\": \"Create or update a record set of type ‘AAAA’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/delete\",\r\n \"displayName\": \"Delete RecordSet AAAA\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/SRV\",\r\n \"displayName\": \"DNS SRV RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/read\",\r\n \"displayName\": \"Get RecordSet SRV\",\r\n \"description\": \"Get the record set of type ‘SRV’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/write\",\r\n \"displayName\": \"Create or update a record set of type ‘SRV’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"description\": \"Create or update RecordSet SRV\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/delete\",\r\n \"displayName\": \"Delete RecordSet SRV\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/PTR\",\r\n \"displayName\": \"DNS PTR RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/read\",\r\n \"displayName\": \"Get RecordSet PTR\",\r\n \"description\": \"Get the record set of type ‘PTR’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/write\",\r\n \"displayName\": \"Create or update RecordSet PTR\",\r\n \"description\": \"Create or update a record set of type ‘PTR’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/delete\",\r\n \"displayName\": \"Delete RecordSet PTR\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/A\",\r\n \"displayName\": \"DNS A RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/read\",\r\n \"displayName\": \"Get RecordSet A\",\r\n \"description\": \"Get the record set of type ‘A’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/write\",\r\n \"displayName\": \"Create or update RecordSet A\",\r\n \"description\": \"Create or update a record set of type ‘A’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/delete\",\r\n \"displayName\": \"Delete RecordSet A\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/TXT\",\r\n \"displayName\": \"DNS TXT RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/read\",\r\n \"displayName\": \"Get RecordSet TXT\",\r\n \"description\": \"Get the record set of type ‘TXT’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/write\",\r\n \"displayName\": \"Create or update RecordSet TXT\",\r\n \"description\": \"Create or update a record set of type ‘TXT’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/delete\",\r\n \"displayName\": \"Delete RecordSet TXT\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces\",\r\n \"displayName\": \"Network Interface\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/read\",\r\n \"displayName\": \"Get Network Interface\",\r\n \"description\": \"Gets a network interface definition. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/write\",\r\n \"displayName\": \"Create or Update Network Interface\",\r\n \"description\": \"Creates a network interface or updates an existing network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"displayName\": \"Join Virtual Machine to a network interface\",\r\n \"description\": \"Joins a Virtual Machine to a network interface\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/delete\",\r\n \"displayName\": \"Delete Network Interface\",\r\n \"description\": \"Deletes a network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces/loadBalancers\",\r\n \"displayName\": \"Network Interface Load Balancers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"displayName\": \"Get Network Interface Load Balancers\",\r\n \"description\": \"Gets all the load balancers that the network interface is part of\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicIPAddresses\",\r\n \"displayName\": \"Public Ip Address\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/read\",\r\n \"displayName\": \"Get Public Ip Address\",\r\n \"description\": \"Gets a public ip address definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/write\",\r\n \"displayName\": \"Create or Update Public Ip Address\",\r\n \"description\": \"Creates a public Ip address or updates an existing public Ip address. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"displayName\": \"Delete Public Ip Address\",\r\n \"description\": \"Deletes a public Ip address.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"displayName\": \"Join Public Ip Address\",\r\n \"description\": \"Joins a public ip address\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Public IP Address Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Public IP Address Diagnostic Settings\",\r\n \"description\": \"Gets the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Public IP Address Diagnostic Settings\",\r\n \"description\": \"Creates or updates the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Public IP Address Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Public IP Address Event Log Definitions\",\r\n \"description\": \"Gets the events for Public IP Address\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"LoadBalancerAlertEvent\",\r\n \"displayName\": \"Load Balancer Alert Events\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"PublicIpProgrammingStatus\",\r\n \"displayName\": \"Public IP Programming Status\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers\",\r\n \"displayName\": \"Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/read\",\r\n \"displayName\": \"Get Load Balancer\",\r\n \"description\": \"Gets a load balancer definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/write\",\r\n \"displayName\": \"Create or Update Load Balancer\",\r\n \"description\": \"Creates a load balancer or updates an existing load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/delete\",\r\n \"displayName\": \"Delete Load Balancer\",\r\n \"description\": \"Deletes a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/networkInterfaces\",\r\n \"displayName\": \"Load Balancer Network Interfaces\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"displayName\": \"Get Load Balancer Network Interfaces\",\r\n \"description\": \"Gets references to all the network interfaces under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/loadBalancingRules\",\r\n \"displayName\": \"Load Balancer Load Balancing Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"displayName\": \"Get Load Balancer Load Balancing Rule\",\r\n \"description\": \"Gets a load balancer load balancing rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Load Balancing Rule\",\r\n \"description\": \"Creates a load balancer load balancing rule or updates an existing load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Load Balancing Rule\",\r\n \"description\": \"Deletes a load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/backendAddressPools\",\r\n \"displayName\": \"Load Balancer Backend Address Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Load Balancer Backend Address Pool\",\r\n \"description\": \"Joins a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"displayName\": \"Get Load Balancer Backend Address Pool\",\r\n \"description\": \"Gets a load balancer backend address pool definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"displayName\": \"Create or Update Load Balancer Backend Address Pool\",\r\n \"description\": \"Creates a load balancer backend address pool or updates an existing load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"displayName\": \"Delete Load Balancer Backend Address Pool\",\r\n \"description\": \"Deletes a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/inboundNatRules\",\r\n \"displayName\": \"Load Balancer Inbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"displayName\": \"Join Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Joins a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Gets a load balancer inbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Creates a load balancer inbound nat rule or updates an existing load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/outboundNatRules\",\r\n \"displayName\": \"Load Balancer Outbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Gets a load balancer outbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Creates a load balancer outbound nat rule or updates an existing load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/probes\",\r\n \"displayName\": \"Load Balancer Probe\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"displayName\": \"Get Load Balancer Probe\",\r\n \"description\": \"Gets a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/write\",\r\n \"displayName\": \"Create or Update Load Balancer Probe\",\r\n \"description\": \"Creates a load balancer probe or updates an existing load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/delete\",\r\n \"displayName\": \"Delete Load Balancer Probe\",\r\n \"description\": \"Deletes a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/virtualMachines\",\r\n \"displayName\": \"Load Balancer Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"displayName\": \"Get Load Balancer Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/write\",\r\n \"displayName\": \"Create or Update Virtual Network\",\r\n \"description\": \"Creates a virtual network or updates an existing virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network\",\r\n \"description\": \"Deletes a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets\",\r\n \"displayName\": \"Virtual Network Subnet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"displayName\": \"Join Virtual Network\",\r\n \"description\": \"Joins a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"displayName\": \"Get Virtual Network Subnet\",\r\n \"description\": \"Gets a virtual network subnet definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"displayName\": \"Create or Update Virtual Network Subnet\",\r\n \"description\": \"Creates a virtual network subnet or updates an existing virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"displayName\": \"Delete Virtual Network Subnet\",\r\n \"description\": \"Deletes a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets/virtualMachines\",\r\n \"displayName\": \"Virtual Network Subnet Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Subnet Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/virtualMachines\",\r\n \"displayName\": \"Virtual Network Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"trafficManagerProfiles\",\r\n \"displayName\": \"Traffic Manager Profile\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"displayName\": \"Get Traffic Manager Profile\",\r\n \"description\": \"Get the Traffic Manager profile configuration. This includes DNS settings, traffic routing settings, endpoint monitoring settings, and the list of endpoints routed by this Traffic Manager profile.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"displayName\": \"Create or Update Traffic Manager Profile\",\r\n \"description\": \"Create a Traffic Manager profile, or modify the configuration of an existing Traffic Manager profile. This includes enabling or disabling a profile and modifying DNS settings, traffic routing settings, or endpoint monitoring settings. Endpoints routed by the Traffic Manager profile can be added, removed, enabled or disabled.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/delete\",\r\n \"displayName\": \"Delete Traffic Manager Profile\",\r\n \"description\": \"Delete the Traffic Manager profile. All settings associated with the Traffic Manager profile will be lost, and the profile can no longer be used to route traffic.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups\",\r\n \"displayName\": \"Network Security Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"displayName\": \"Get Network Security Group\",\r\n \"description\": \"Gets a network security group definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"displayName\": \"Create or Update Network Security Group\",\r\n \"description\": \"Creates a network security group or updates an existing network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"displayName\": \"Delete Network Security Group\",\r\n \"description\": \"Deletes a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"displayName\": \"Join Network Security Group\",\r\n \"description\": \"Joins a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Network Security Groups Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Network Security Groups Diagnostic Settings\",\r\n \"description\": \"Gets the Network Security Groups Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Network Security Groups diagnostic settings\",\r\n \"description\": \"Creates or updates the Network Security Groups diagnostic settings, this operation is supplimented by insghts resource provider.\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Network Security Groups Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Network Security Group Event Log Definitions\",\r\n \"description\": \"Gets the events for network security group\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"NetworkSecurityGroupEvent\",\r\n \"displayName\": \"Network Security Group Event\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"NetworkSecurityGroupRuleCounter\",\r\n \"displayName\": \"Network Security Group Rule Counter\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/defaultSecurityRules\",\r\n \"displayName\": \"Default Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"displayName\": \"Get Default Security Rule\",\r\n \"description\": \"Gets a default security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/securityRules\",\r\n \"displayName\": \"Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"displayName\": \"Get Security Rule\",\r\n \"description\": \"Gets a security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"displayName\": \"Create or Update Security Rule\",\r\n \"description\": \"Creates a security rule or updates an existing security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"displayName\": \"Delete Security Rule\",\r\n \"description\": \"Deletes a security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/read\",\r\n \"displayName\": \"Get Application Gateway\",\r\n \"description\": \"Gets an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/write\",\r\n \"displayName\": \"Create or Update Application Gateway\",\r\n \"description\": \"Creates an application gateway or updates an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/delete\",\r\n \"displayName\": \"Delete Application Gateway\",\r\n \"description\": \"Deletes an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"ApplicationGateway Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \">Gets the logs for Application Gateway\",\r\n \"description\": \"Gets the events for Application Gateway\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ApplicationGatewayAccessLog\",\r\n \"displayName\": \"Application Gateway Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/backendAddressPools\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Application Gateway Backend Address Pool\",\r\n \"description\": \"Joins an application gateway backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables\",\r\n \"displayName\": \"Route Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/read\",\r\n \"displayName\": \"Get Route Table\",\r\n \"description\": \"Gets a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/write\",\r\n \"displayName\": \"Create or Update Route Table\",\r\n \"description\": \"Creates a route table or Updates an existing rotue table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/delete\",\r\n \"displayName\": \"Delete Route Table\",\r\n \"description\": \"Deletes a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/join/action\",\r\n \"displayName\": \"Join Route Table\",\r\n \"description\": \"Joins a route table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables/routes\",\r\n \"displayName\": \"Route\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/read\",\r\n \"displayName\": \"Get Route\",\r\n \"description\": \"Gets a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/write\",\r\n \"displayName\": \"Create or Update Route\",\r\n \"description\": \"Creates a route or Updates an existing route\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/delete\",\r\n \"displayName\": \"Delete Route\",\r\n \"description\": \"Deletes a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operationResults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operationResults/read\",\r\n \"displayName\": \"Get Operation Result\",\r\n \"description\": \"Gets operation result of an async POST or DELETE operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/checkDnsNameAvailability\",\r\n \"displayName\": \"Dns Availability Check Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/checkDnsNameAvailability/read\",\r\n \"displayName\": \"Check Dns Name Availability\",\r\n \"description\": \"Checks if dns label is available at the specified location\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operations\",\r\n \"displayName\": \"Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operations/read\",\r\n \"displayName\": \"Get Operation Resource\",\r\n \"description\": \"Gets operation resource that represents status of an asynchronous operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/usage\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/usage/read\",\r\n \"displayName\": \"Get Usage Metric\",\r\n \"description\": \"Gets the resources usage metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Network\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Network\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Cache\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"redis\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/write\",\r\n \"displayName\": \"Manage Redis Cache (read-write)\",\r\n \"description\": \"Modify the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/read\",\r\n \"displayName\": \"Manage Redis Cache (read-only)\",\r\n \"description\": \"View the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/delete\",\r\n \"displayName\": \"Delete Redis Cache\",\r\n \"description\": \"Delete the entire Redis Cache\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/listKeys/action\",\r\n \"displayName\": \"View Redis Cache Access Keys\",\r\n \"description\": \"View the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Redis Cache Access Keys\",\r\n \"description\": \"Change the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"redis/metricdefinitions\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/metricdefinitions/Read\",\r\n \"displayName\": \"Microsoft.Cache Metric Definitions\",\r\n \"description\": \"Gets the available metrics for microsoft.cache\",\r\n \"origin\": null,\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"connectedclients\",\r\n \"displayName\": \"Connected Clients\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed\",\r\n \"displayName\": \"Total Operations\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits\",\r\n \"displayName\": \"Cache Hits\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses\",\r\n \"displayName\": \"Cache Misses\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands\",\r\n \"displayName\": \"Gets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands\",\r\n \"displayName\": \"Sets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys\",\r\n \"displayName\": \"Evicted Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys\",\r\n \"displayName\": \"Total Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys\",\r\n \"displayName\": \"Expired Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory\",\r\n \"displayName\": \"Used Memory\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss\",\r\n \"displayName\": \"Used Memory RSS\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad\",\r\n \"displayName\": \"Server Load\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite\",\r\n \"displayName\": \"Cache Write\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead\",\r\n \"displayName\": \"Cache Read\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients0\",\r\n \"displayName\": \"Connected Clients (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed0\",\r\n \"displayName\": \"Total Operations (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits0\",\r\n \"displayName\": \"Cache Hits (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses0\",\r\n \"displayName\": \"Cache Misses (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands0\",\r\n \"displayName\": \"Gets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands0\",\r\n \"displayName\": \"Sets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys0\",\r\n \"displayName\": \"Evicted Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys0\",\r\n \"displayName\": \"Total Keys (Node 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys0\",\r\n \"displayName\": \"Expired Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory0\",\r\n \"displayName\": \"Used Memory (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss0\",\r\n \"displayName\": \"Used Memory RSS (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad0\",\r\n \"displayName\": \"Server Load (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite0\",\r\n \"displayName\": \"Cache Write (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead0\",\r\n \"displayName\": \"Cache Read (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime0\",\r\n \"displayName\": \"CPU (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients1\",\r\n \"displayName\": \"Connected Clients (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed1\",\r\n \"displayName\": \"Total Operations (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits1\",\r\n \"displayName\": \"Cache Hits (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses1\",\r\n \"displayName\": \"Cache Misses (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands1\",\r\n \"displayName\": \"Gets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands1\",\r\n \"displayName\": \"Sets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys1\",\r\n \"displayName\": \"Evicted Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys1\",\r\n \"displayName\": \"Total Keys (Node 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys1\",\r\n \"displayName\": \"Expired Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory1\",\r\n \"displayName\": \"Used Memory (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss1\",\r\n \"displayName\": \"Used Memory RSS (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad1\",\r\n \"displayName\": \"Server Load (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite1\",\r\n \"displayName\": \"Cache Write (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead1\",\r\n \"displayName\": \"Cache Read (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime1\",\r\n \"displayName\": \"CPU (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients2\",\r\n \"displayName\": \"Connected Clients (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed2\",\r\n \"displayName\": \"Total Operations (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits2\",\r\n \"displayName\": \"Cache Hits (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses2\",\r\n \"displayName\": \"Cache Misses (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands2\",\r\n \"displayName\": \"Gets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands2\",\r\n \"displayName\": \"Sets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys2\",\r\n \"displayName\": \"Evicted Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys2\",\r\n \"displayName\": \"Total Keys (Node 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys2\",\r\n \"displayName\": \"Expired Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory2\",\r\n \"displayName\": \"Used Memory (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss2\",\r\n \"displayName\": \"Used Memory RSS (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad2\",\r\n \"displayName\": \"Server Load (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite2\",\r\n \"displayName\": \"Cache Write (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead2\",\r\n \"displayName\": \"Cache Read (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime2\",\r\n \"displayName\": \"CPU (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients3\",\r\n \"displayName\": \"Connected Clients (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed3\",\r\n \"displayName\": \"Total Operations (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits3\",\r\n \"displayName\": \"Cache Hits (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses3\",\r\n \"displayName\": \"Cache Misses (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands3\",\r\n \"displayName\": \"Gets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands3\",\r\n \"displayName\": \"Sets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys3\",\r\n \"displayName\": \"Evicted Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys3\",\r\n \"displayName\": \"Total Keys (Node 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys3\",\r\n \"displayName\": \"Expired Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory3\",\r\n \"displayName\": \"Used Memory (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss3\",\r\n \"displayName\": \"Used Memory RSS (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad3\",\r\n \"displayName\": \"Server Load (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite3\",\r\n \"displayName\": \"Cache Write (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead3\",\r\n \"displayName\": \"Cache Read (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime3\",\r\n \"displayName\": \"CPU (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients4\",\r\n \"displayName\": \"Connected Clients (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed4\",\r\n \"displayName\": \"Total Operations (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits4\",\r\n \"displayName\": \"Cache Hits (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses4\",\r\n \"displayName\": \"Cache Misses (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands4\",\r\n \"displayName\": \"Gets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands4\",\r\n \"displayName\": \"Sets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys4\",\r\n \"displayName\": \"Evicted Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys4\",\r\n \"displayName\": \"Total Keys (Node 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys4\",\r\n \"displayName\": \"Expired Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory4\",\r\n \"displayName\": \"Used Memory (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss4\",\r\n \"displayName\": \"Used Memory RSS (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad4\",\r\n \"displayName\": \"Server Load (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite4\",\r\n \"displayName\": \"Cache Write (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead4\",\r\n \"displayName\": \"Cache Read (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime4\",\r\n \"displayName\": \"CPU (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients5\",\r\n \"displayName\": \"Connected Clients (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed5\",\r\n \"displayName\": \"Total Operations (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits5\",\r\n \"displayName\": \"Cache Hits (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses5\",\r\n \"displayName\": \"Cache Misses (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands5\",\r\n \"displayName\": \"Gets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands5\",\r\n \"displayName\": \"Sets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys5\",\r\n \"displayName\": \"Evicted Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys5\",\r\n \"displayName\": \"Total Keys (Node 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys5\",\r\n \"displayName\": \"Expired Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory5\",\r\n \"displayName\": \"Used Memory (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss5\",\r\n \"displayName\": \"Used Memory RSS (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad5\",\r\n \"displayName\": \"Server Load (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite5\",\r\n \"displayName\": \"Cache Write (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead5\",\r\n \"displayName\": \"Cache Read (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime5\",\r\n \"displayName\": \"CPU (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients6\",\r\n \"displayName\": \"Connected Clients (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed6\",\r\n \"displayName\": \"Total Operations (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits6\",\r\n \"displayName\": \"Cache Hits (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses6\",\r\n \"displayName\": \"Cache Misses (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands6\",\r\n \"displayName\": \"Gets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands6\",\r\n \"displayName\": \"Sets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys6\",\r\n \"displayName\": \"Evicted Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys6\",\r\n \"displayName\": \"Total Keys (Node 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys6\",\r\n \"displayName\": \"Expired Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory6\",\r\n \"displayName\": \"Used Memory (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss6\",\r\n \"displayName\": \"Used Memory RSS (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad6\",\r\n \"displayName\": \"Server Load (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite6\",\r\n \"displayName\": \"Cache Write (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead6\",\r\n \"displayName\": \"Cache Read (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime6\",\r\n \"displayName\": \"CPU (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients7\",\r\n \"displayName\": \"Connected Clients (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed7\",\r\n \"displayName\": \"Total Operations (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits7\",\r\n \"displayName\": \"Cache Hits (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses7\",\r\n \"displayName\": \"Cache Misses (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands7\",\r\n \"displayName\": \"Gets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands7\",\r\n \"displayName\": \"Sets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys7\",\r\n \"displayName\": \"Evicted Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys7\",\r\n \"displayName\": \"Total Keys (Node 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys7\",\r\n \"displayName\": \"Expired Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory7\",\r\n \"displayName\": \"Used Memory (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss7\",\r\n \"displayName\": \"Used Memory RSS (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad7\",\r\n \"displayName\": \"Server Load (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite7\",\r\n \"displayName\": \"Cache Write (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead7\",\r\n \"displayName\": \"Cache Read (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime7\",\r\n \"displayName\": \"CPU (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients8\",\r\n \"displayName\": \"Connected Clients (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed8\",\r\n \"displayName\": \"Total Operations (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits8\",\r\n \"displayName\": \"Cache Hits (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses8\",\r\n \"displayName\": \"Cache Misses (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands8\",\r\n \"displayName\": \"Gets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands8\",\r\n \"displayName\": \"Sets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys8\",\r\n \"displayName\": \"Evicted Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys8\",\r\n \"displayName\": \"Total Keys (Node 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys8\",\r\n \"displayName\": \"Expired Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory8\",\r\n \"displayName\": \"Used Memory (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss8\",\r\n \"displayName\": \"Used Memory RSS (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad8\",\r\n \"displayName\": \"Server Load (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite8\",\r\n \"displayName\": \"Cache Write (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead8\",\r\n \"displayName\": \"Cache Read (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime8\",\r\n \"displayName\": \"CPU (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients9\",\r\n \"displayName\": \"Connected Clients (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed9\",\r\n \"displayName\": \"Total Operations (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits9\",\r\n \"displayName\": \"Cache Hits (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses9\",\r\n \"displayName\": \"Cache Misses (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands9\",\r\n \"displayName\": \"Gets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands9\",\r\n \"displayName\": \"Sets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys9\",\r\n \"displayName\": \"Evicted Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys9\",\r\n \"displayName\": \"Total Keys (Node 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys9\",\r\n \"displayName\": \"Expired Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory9\",\r\n \"displayName\": \"Used Memory (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss9\",\r\n \"displayName\": \"Used Memory RSS (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad9\",\r\n \"displayName\": \"Server Load (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite9\",\r\n \"displayName\": \"Cache Write (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead9\",\r\n \"displayName\": \"Cache Read (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime9\",\r\n \"displayName\": \"CPU (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cache\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cache\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft.BingMaps\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/updateCommunicationPreference/action\",\r\n \"displayName\": \"Update Communication Preferences\",\r\n \"description\": \"Updates the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/listCommunicationPreference/action\",\r\n \"displayName\": \"List Communication Preferences\",\r\n \"description\": \"Gets the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"mapApis\",\r\n \"displayName\": \"mapApis\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Gets the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/write\",\r\n \"displayName\": \"Write\",\r\n \"description\": \"Updates the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Deletes the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Key\",\r\n \"description\": \"Regenerate key(s) for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/listSecrets/action\",\r\n \"displayName\": \"List Secrets\",\r\n \"description\": \"List the secrets for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BingMaps\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BingMaps\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/checkNameAvailability/action\",\r\n \"displayName\": \"Check Service Name Availability\",\r\n \"description\": \"Checks availability of the service name.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"metricDefinitions\",\r\n \"displayName\": \"The metric definitions for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/metricDefinitions/read\",\r\n \"displayName\": \"Read search service metric definitions\",\r\n \"description\": \"Gets the available metrics for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": [\r\n {\r\n \"name\": \"Latency\",\r\n \"displayName\": \"Latency\",\r\n \"displayDescription\": \"Average latency for the search service\",\r\n \"unit\": \"Second\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"diagnosticSettings\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diganostic setting read for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/write\",\r\n \"displayName\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diganostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"logDefinitions\",\r\n \"displayName\": \"The log definition for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/logDefinitions/read\",\r\n \"displayName\": \"Read search service log definitions\",\r\n \"description\": \"Gets the available logs for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": [\r\n {\r\n \"name\": \"OperationLogs\",\r\n \"displayName\": \"Operation Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/write\",\r\n \"displayName\": \"Set Search Service\",\r\n \"description\": \"Creates or updates the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/read\",\r\n \"displayName\": \"Get Search Service\",\r\n \"description\": \"Reads the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/delete\",\r\n \"displayName\": \"Delete Search Service\",\r\n \"description\": \"Deletes the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/start/action\",\r\n \"displayName\": \"Start Search Service\",\r\n \"description\": \"Starts the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/stop/action\",\r\n \"displayName\": \"Stop Search Service\",\r\n \"description\": \"Stops the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listAdminKeys/action\",\r\n \"displayName\": \"Get Admin Key\",\r\n \"description\": \"Reads the admin keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/regenerateAdminKey/action\",\r\n \"displayName\": \"Regenerate Admin Key\",\r\n \"description\": \"Regenerates the admin key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/action\",\r\n \"displayName\": \"Create Query Key\",\r\n \"description\": \"Creates the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/createQueryKey\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/delete\",\r\n \"displayName\": \"Delete Query Key\",\r\n \"description\": \"Deletes the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/listQueryKeys\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listQueryKeys/read\",\r\n \"displayName\": \"Get Query Key\",\r\n \"description\": \"Reads the query keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Search\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Search\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicStorage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/checkStorageAccountAvailability/action\",\r\n \"displayName\": \"Check Storage Account Availability\",\r\n \"description\": \"Checks for the availability of a storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"displayName\": \"Get The Storage Account\",\r\n \"description\": \"Return the storage account with the given account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/write\",\r\n \"displayName\": \"Add Storage Account\",\r\n \"description\": \"Adds a new storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Delete the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"displayName\": \"List Access Keys\",\r\n \"description\": \"Lists the access keys for the storage accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Access Keys\",\r\n \"description\": \"Regenerates the existing access keys for the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/delete\",\r\n \"displayName\": \"Delete Storage Account Image\",\r\n \"description\": \"Deletes a given storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/delete\",\r\n \"displayName\": \"Delete Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/read\",\r\n \"displayName\": \"Get Available Services\",\r\n \"description\": \"Get the available services.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicStorage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicStorage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Monitoring Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"AlertRules\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Write\",\r\n \"displayName\": \"Alert Rule write\",\r\n \"description\": \"Writing to an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Delete\",\r\n \"displayName\": \"Alert Rule delete\",\r\n \"description\": \"Deleting an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Read\",\r\n \"displayName\": \"Alert Rule read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"displayName\": \"Alert Rule activated\",\r\n \"description\": \"Alert Rule activated\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"displayName\": \"Alert Rule resolved\",\r\n \"description\": \"Alert Rule resolved\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AlertRules/Incidents\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"displayName\": \"Alert Rule Incidents read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/values\",\r\n \"displayName\": \"Events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"displayName\": \"Event types management values read\",\r\n \"description\": \"Read management event type values\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/digestevents\",\r\n \"displayName\": \"Digest events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/digestevents/Read\",\r\n \"displayName\": \"Event types management digest read\",\r\n \"description\": \"Read management event type digest\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AutoscaleSettings\",\r\n \"displayName\": \"Autoscale\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Write\",\r\n \"displayName\": \"Autoscale Setting write\",\r\n \"description\": \"Writing to an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Delete\",\r\n \"displayName\": \"Autoscale Setting delete\",\r\n \"description\": \"Deleting an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Read\",\r\n \"displayName\": \"Autoscale Setting read\",\r\n \"description\": \"Reading an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaleup/Action\",\r\n \"displayName\": \"Autoscale scale up operation\",\r\n \"description\": \"Autoscale scale up operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaledown/Action\",\r\n \"displayName\": \"Autoscale scale down operation\",\r\n \"description\": \"Autoscale scale down operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.insights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.insights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Operational Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"linkTargets\",\r\n \"displayName\": \"Unlinked Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/linkTargets/read\",\r\n \"displayName\": \"List Unlinked Accounts\",\r\n \"description\": \"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces\",\r\n \"displayName\": \"Workspace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"displayName\": \"Create Workspace\",\r\n \"description\": \"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"displayName\": \"Get Workspace\",\r\n \"description\": \"Gets an existing workspace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/delete\",\r\n \"displayName\": \"Delete Workspace\",\r\n \"description\": \"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action\",\r\n \"displayName\": \"Generates Registration Certificate for Workspace.\",\r\n \"description\": \"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"displayName\": \"List Workspace Shared Keys\",\r\n \"description\": \"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"displayName\": \"Search Workspace Data\",\r\n \"description\": \"Executes a search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/managementGroups\",\r\n \"displayName\": \"Management Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/managementGroups/read\",\r\n \"displayName\": \"Get Management Groups for Workspace\",\r\n \"description\": \"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/schema\",\r\n \"displayName\": \"Search Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/schema/read\",\r\n \"displayName\": \"Get Search Schema\",\r\n \"description\": \"Gets the search schema for the workspace. Search schema includes the exposed fields and their types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/usages\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/usages/read\",\r\n \"displayName\": \"Get Usage Data for Workspace\",\r\n \"description\": \"Gets usage data for a workspace including the amount of data read by the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/savedSearches\",\r\n \"displayName\": \"Saved Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"displayName\": \"Get Saved Search\",\r\n \"description\": \"Gets a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/write\",\r\n \"displayName\": \"Create Saved Search\",\r\n \"description\": \"Creates a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/delete\",\r\n \"displayName\": \"Delete Saved Search\",\r\n \"description\": \"Deletes a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/storageinsightconfigs\",\r\n \"displayName\": \"Storage Insight Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write\",\r\n \"displayName\": \"Create Storage Configuration\",\r\n \"description\": \"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read\",\r\n \"displayName\": \"Get Storage Configuration\",\r\n \"description\": \"Gets a storage configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete\",\r\n \"displayName\": \"Delete Storage Configuration\",\r\n \"description\": \"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.OperationalInsights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.OperationalInsights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure Notification Hub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/CheckNamespaceAvailability/action\",\r\n \"displayName\": \"Check Namespace name availability.\",\r\n \"description\": \"Checks whether or not a given Namespace resource name is available within the NotificationHub service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"Namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/CheckNotificationHubAvailability/action\",\r\n \"displayName\": \"Check NotificationHub name availability.\",\r\n \"description\": \"Checks whether or not a given NotificationHub name is available inside a Namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/write\",\r\n \"displayName\": \"Create or Update Notification Hub \",\r\n \"description\": \"Create a Notification Hub and Update its properties. Its properties mainly include PNS Credentials. Authorization Rules and TTL\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/read\",\r\n \"displayName\": \"Get Notification Hub\",\r\n \"description\": \"Get list of Notification Hub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/Delete\",\r\n \"displayName\": \"Delete Notification Hub\",\r\n \"description\": \"Delete Notification Hub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/action\",\r\n \"displayName\": \"Get Notification Hub Authorization Rules\",\r\n \"description\": \"Get the list of Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/pnsCredentials/action\",\r\n \"displayName\": \"Get Notification Hub PNS Credentials\",\r\n \"description\": \"Get All Notification Hub PNS Credentials. This includes, WNS, MPNS, APNS, GCM and Baidu credentials\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs/authorizationRules\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Notification hub Authorization Rule\",\r\n \"description\": \"Create Notification Hub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete Notification Hub Authorization Rules\",\r\n \"description\": \"Delete Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Notification Hub Listkeys\",\r\n \"description\": \"Get the Connection String to the Notification Hub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.NotificationHubs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.NotificationHubs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Scheduler\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"jobcollections\",\r\n \"displayName\": \"Job Collection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/read\",\r\n \"displayName\": \"Get Job Collection\",\r\n \"description\": \"Get Job Collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/write\",\r\n \"displayName\": \"Create Job Collection\",\r\n \"description\": \"Creates or updates job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/delete\",\r\n \"displayName\": \"Delete Job Collection\",\r\n \"description\": \"Deletes job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/enable/action\",\r\n \"displayName\": \"Enable Job Collection\",\r\n \"description\": \"Enables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/disable/action\",\r\n \"displayName\": \"Disable Job Collection\",\r\n \"description\": \"Disables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs\",\r\n \"displayName\": \"Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/read\",\r\n \"displayName\": \"Get Job\",\r\n \"description\": \"Gets job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/write\",\r\n \"displayName\": \"Create Job\",\r\n \"description\": \"Creates or updates job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/delete\",\r\n \"displayName\": \"Delete Job\",\r\n \"description\": \"Deletes job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/run/action\",\r\n \"displayName\": \"Run Job\",\r\n \"description\": \"Runs job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs/jobhistories\",\r\n \"displayName\": \"Job History\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/jobhistories/read\",\r\n \"displayName\": \"Get Job History\",\r\n \"description\": \"Gets job history.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Scheduler\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Scheduler\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Data Factory\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"datafactories\",\r\n \"displayName\": \"Data Factory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/read\",\r\n \"displayName\": \"Read Data Factory\",\r\n \"description\": \"Reads Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/write\",\r\n \"displayName\": \"Create or Update any Data Factory.\",\r\n \"description\": \"Create or Update Data Factory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/delete\",\r\n \"displayName\": \"Delete Data Factory\",\r\n \"description\": \"Deletes Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/datapipelines\",\r\n \"displayName\": \"Pipeline\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/read\",\r\n \"displayName\": \"Read Pipeline\",\r\n \"description\": \"Reads Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/delete\",\r\n \"displayName\": \"Delete Pipeline\",\r\n \"description\": \"Deletes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/pause/action\",\r\n \"displayName\": \"Puase Pipeline\",\r\n \"description\": \"Pauses Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/resume/action\",\r\n \"displayName\": \"Resume Pipeline\",\r\n \"description\": \"Resumes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/update/action\",\r\n \"displayName\": \"Update Pipeline\",\r\n \"description\": \"Updates Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/write\",\r\n \"displayName\": \"Create or Update any Pipeline.\",\r\n \"description\": \"Create or Update Pipeline\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/linkedServices\",\r\n \"displayName\": \"Linked service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/read\",\r\n \"displayName\": \"Read Linked service\",\r\n \"description\": \"Reads Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/delete\",\r\n \"displayName\": \"Delete Linked service\",\r\n \"description\": \"Deletes Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/write\",\r\n \"displayName\": \"Create or Update any Linked service.\",\r\n \"description\": \"Create or Update Linked service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/{resourceTypeName:regex(^(tables|datasets)$)}\",\r\n \"displayName\": \"Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/read\",\r\n \"displayName\": \"Read Table\",\r\n \"description\": \"Reads Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/delete\",\r\n \"displayName\": \"Delete Table\",\r\n \"description\": \"Deletes Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/write\",\r\n \"displayName\": \"Create or Update any Table.\",\r\n \"description\": \"Create or Update Table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataFactory\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataFactory\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Web Apps\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"sites\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/Read\",\r\n \"displayName\": \"Get Web Apps\",\r\n \"description\": \"Get the list of Web Apps.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Write\",\r\n \"displayName\": \"Create or Update Web App\",\r\n \"description\": \"Create a new Web App or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Delete\",\r\n \"displayName\": \"Delete Web App\",\r\n \"description\": \"Delete an existing Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App\",\r\n \"description\": \"List publishing profile xml for Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/restart/Action\",\r\n \"displayName\": \"Restart Web App\",\r\n \"description\": \"Restart Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/start/Action\",\r\n \"displayName\": \"Start Web App\",\r\n \"description\": \"Start Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/stop/Action\",\r\n \"displayName\": \"Stop Web App\",\r\n \"description\": \"Stop Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App with a slot\",\r\n \"description\": \"Swap Web App with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/Write\",\r\n \"displayName\": \"Create Web App Backup\",\r\n \"description\": \"Create new web app backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup/config\",\r\n \"displayName\": \"Web App Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Read\",\r\n \"displayName\": \"List Web App Backup Configurations\",\r\n \"description\": \"List all Web App backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Write\",\r\n \"displayName\": \"Update Web App Backup Configuration\",\r\n \"description\": \"Update Web App backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slotsdiffs\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Write\",\r\n \"displayName\": \"Create or Update Web App Slot\",\r\n \"description\": \"Create a new Web App Slot or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Delete\",\r\n \"displayName\": \"Delete Web App Slot\",\r\n \"description\": \"Delete an existing Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App Slot\",\r\n \"description\": \"List publishing profile xml for Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"displayName\": \"Restart Web App Slot\",\r\n \"description\": \"Restart Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/start/Action\",\r\n \"displayName\": \"Start Web App Slot\",\r\n \"description\": \"Start Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"displayName\": \"Stop Web App Slot\",\r\n \"description\": \"Stop Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App Slot with another slot\",\r\n \"description\": \"Swap Web App Slot with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Action\",\r\n \"displayName\": \"List Web App Slot Backup Configurations\",\r\n \"description\": \"List all Web App Slot backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/Write\",\r\n \"displayName\": \"Create Web App Slot Backup\",\r\n \"description\": \"Create new Web App Slot backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup/config\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Write\",\r\n \"displayName\": \"Update Web App Slot Backup Configuration\",\r\n \"description\": \"Update Web App Slot backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/slotsdiffs\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/appsettings\",\r\n \"displayName\": \"Web App Slot AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's AppSettings\",\r\n \"description\": \"Get Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App Slot's AppSettings\",\r\n \"description\": \"Update Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/logs\",\r\n \"displayName\": \"Web App Slot Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Read\",\r\n \"displayName\": \"Get Web App Slot's Logs Config\",\r\n \"description\": \"Get Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Write\",\r\n \"displayName\": \"Update Web App Slot's Logs Config\",\r\n \"description\": \"Update Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/publishingcredentials\",\r\n \"displayName\": \"Web App Slot Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App Slot's publishing credentials\",\r\n \"description\": \"List Web App Slot's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/connectionstrings\",\r\n \"displayName\": \"Web App Slot Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's connection strings\",\r\n \"description\": \"Get Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App Slot's connection strings\",\r\n \"description\": \"Update Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/web\",\r\n \"displayName\": \"Web App Slot Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Read\",\r\n \"displayName\": \"Get Web App Slot's configuration\",\r\n \"description\": \"Get Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Write\",\r\n \"displayName\": \"Update Web App Slot's configuration\",\r\n \"description\": \"Update Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/metadata\",\r\n \"displayName\": \"Web App Slot Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App Slot's metadata\",\r\n \"description\": \"List Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/Write\",\r\n \"displayName\": \"Update Web App Slot's metadata\",\r\n \"description\": \"Update Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/sourcecontrols/web\",\r\n \"displayName\": \"Web App Slot Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App Slot's source control configuration\",\r\n \"description\": \"Get Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App Slot's source control configuration\",\r\n \"description\": \"Update Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App Slot's source control configuration\",\r\n \"description\": \"Delete Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/restore\",\r\n \"displayName\": \"Web App Slot Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restore/Read\",\r\n \"displayName\": \"List Web App Slot Backups\",\r\n \"description\": \"List all backups for a Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/appsettings\",\r\n \"displayName\": \"Web App AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App's AppSettings\",\r\n \"description\": \"Get Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App's AppSettings\",\r\n \"description\": \"Update Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/logs\",\r\n \"displayName\": \"Web App Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Read\",\r\n \"displayName\": \"Get Web App's Logs Config\",\r\n \"description\": \"Get Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Write\",\r\n \"displayName\": \"Update Web App's Logs Config\",\r\n \"description\": \"Update Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/publishingcredentials\",\r\n \"displayName\": \"Web App Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App's publishing credentials\",\r\n \"description\": \"List Web App's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/connectionstrings\",\r\n \"displayName\": \"Web App Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App's connection strings\",\r\n \"description\": \"Get Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App's connection strings\",\r\n \"description\": \"Update Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/web\",\r\n \"displayName\": \"Web App Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Read\",\r\n \"displayName\": \"Get Web App's configuration\",\r\n \"description\": \"Get Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Write\",\r\n \"displayName\": \"Update Web App's configuration\",\r\n \"description\": \"Update Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/metadata\",\r\n \"displayName\": \"Web App Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App's metadata\",\r\n \"description\": \"List Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/Write\",\r\n \"displayName\": \"Update Web App's metadata\",\r\n \"description\": \"Update Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/sourcecontrols/web\",\r\n \"displayName\": \"Web App Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App's source control configuration\",\r\n \"description\": \"Get Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App's source control configuration\",\r\n \"description\": \"Update Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App's source control configuration\",\r\n \"description\": \"Delete Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/restore\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/restore/Read\",\r\n \"displayName\": \"List Web App Backups\",\r\n \"description\": \"List all backups for a Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverfarms\",\r\n \"displayName\": \"App Service Plan\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Read\",\r\n \"displayName\": \"Get App Service Plans\",\r\n \"description\": \"Get the list of App Service Plans.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Write\",\r\n \"displayName\": \"Create or Update App Service Plans\",\r\n \"description\": \"Create a new App Service Plan or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Delete\",\r\n \"displayName\": \"Delete App Service Plan\",\r\n \"description\": \"Delete an existing App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/restartSites/Action\",\r\n \"displayName\": \"Restart Web Apps\",\r\n \"description\": \"Restart Web Apps in an App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Read\",\r\n \"displayName\": \"Get Certificates\",\r\n \"description\": \"Get the list of certificates.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Write\",\r\n \"displayName\": \"Add or Update Certificate\",\r\n \"description\": \"Add a new certificate or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Delete\",\r\n \"displayName\": \"Delete Certificate\",\r\n \"description\": \"Delete an existing certificate.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Web\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Web\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"vaults\",\r\n \"displayName\": \"Key Vault\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/read\",\r\n \"displayName\": \"View Key Vault\",\r\n \"description\": \"View the properties of a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/write\",\r\n \"displayName\": \"Update Key Vault\",\r\n \"description\": \"Create a new key vault or update the properties of an existing key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/delete\",\r\n \"displayName\": \"Delete Key Vault\",\r\n \"description\": \"Delete a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"displayName\": \"Use Vault for Virtual Machines\",\r\n \"description\": \"Enables access to secrets in a key vault when deploying a virtual machine\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Key Vault Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Read\",\r\n \"displayName\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Write\",\r\n \"displayName\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Key Vault Log Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Read log definition\",\r\n \"description\": \"Gets the available logs for Key Vault\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AuditEvent\",\r\n \"displayName\": \"Audit Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/secrets\",\r\n \"displayName\": \"Secret\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"displayName\": \"View Secret Properties\",\r\n \"description\": \"View the properties of a secret, but not its value\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"displayName\": \"Update Secret\",\r\n \"description\": \"Create a new secret or update the value of an existing secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/delete\",\r\n \"displayName\": \"Delete Secret\",\r\n \"description\": \"Delete a secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.KeyVault\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.KeyVault\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft AppService\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"appidentities\",\r\n \"displayName\": \"App Identity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Read\",\r\n \"displayName\": \"Get App Identity\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Write\",\r\n \"displayName\": \"Create App Identity\",\r\n \"description\": \"Creates a new App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Delete\",\r\n \"displayName\": \"Delete App Identity\",\r\n \"description\": \"Deletes an existing App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deploymenttemplates\",\r\n \"displayName\": \"Deployment Template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/listMetadata/Action\",\r\n \"displayName\": \"List UI Metadata\",\r\n \"description\": \"Lists UI Metadata associated with the API App package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/generate/Action\",\r\n \"displayName\": \"Generate Deployment Template\",\r\n \"description\": \"Returns a Deployment Template to provision API App instance(s).\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways\",\r\n \"displayName\": \"Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Read\",\r\n \"displayName\": \"Get Gateway\",\r\n \"description\": \"Returns the Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Write\",\r\n \"displayName\": \"Create or Update Gateway\",\r\n \"description\": \"Creates a new Gateway or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Delete\",\r\n \"displayName\": \"Delete Gateway\",\r\n \"description\": \"Deletes an existing Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listLoginUris/Action\",\r\n \"displayName\": \"List Login URIs\",\r\n \"description\": \"Populates token store and returns OAuth login URIs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listKeys/Action\",\r\n \"displayName\": \"List Gateway Secrets\",\r\n \"description\": \"Returns Gateway secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/tokens\",\r\n \"displayName\": \"Zumo Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/tokens/Write\",\r\n \"displayName\": \"Create Zumo Token\",\r\n \"description\": \"Creates a new Zumo Token with the given name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/registrations\",\r\n \"displayName\": \"Gateway Registration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Read\",\r\n \"displayName\": \"Get Registered Resource\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Write\",\r\n \"displayName\": \"Register Resource\",\r\n \"description\": \"Registers a resource (web site) with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Delete\",\r\n \"displayName\": \"Unregister Resource\",\r\n \"description\": \"Unregisters a resource (web site) from the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps\",\r\n \"displayName\": \"API App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Read\",\r\n \"displayName\": \"Get API App\",\r\n \"description\": \"Returns the API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Write\",\r\n \"displayName\": \"Create or Update API App\",\r\n \"description\": \"Creates a new API App or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Delete\",\r\n \"displayName\": \"Delete API App\",\r\n \"description\": \"Deletes an existing API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listStatus/Action\",\r\n \"displayName\": \"Get API App Status\",\r\n \"description\": \"Returns API App status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listKeys/Action\",\r\n \"displayName\": \"List API App Secrets\",\r\n \"description\": \"Returns API App secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps/apidefinitions\",\r\n \"displayName\": \"API Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/apidefinitions/Read\",\r\n \"displayName\": \"Get API App's API Definition\",\r\n \"description\": \"Returns API App's API definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.AppService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.AppService\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DevTest Labs\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"labs\",\r\n \"displayName\": \"DevTest Labs\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/read\",\r\n \"displayName\": \"Read DevTest Labs.\",\r\n \"description\": \"Read DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/write\",\r\n \"displayName\": \"Add or modify DevTest Labs.\",\r\n \"description\": \"Add or modify DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/delete\",\r\n \"displayName\": \"Delete DevTest Labs.\",\r\n \"description\": \"Delete DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"displayName\": \"Create an environment.\",\r\n \"description\": \"Create virtual machines or environments in a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/listVhds/action\",\r\n \"displayName\": \"List VHDs.\",\r\n \"description\": \"List disk images available for VM template creation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/labStats/action\",\r\n \"displayName\": \"Get Lab Status\",\r\n \"description\": \"Get the number of environments and the limit of environments for the lab. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/getUploadUri/action\",\r\n \"displayName\": \"Get Image Upload URI.\",\r\n \"description\": \"Get a URI for uploading custom disk images to a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/artifactSources\",\r\n \"displayName\": \"Artifact Sources\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/read\",\r\n \"displayName\": \"Read Artifact Sources.\",\r\n \"description\": \"Read Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/write\",\r\n \"displayName\": \"Add or modify Artifact Sources.\",\r\n \"description\": \"Add or modify Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/delete\",\r\n \"displayName\": \"Delete Artifact Sources.\",\r\n \"description\": \"Delete Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/policies\",\r\n \"displayName\": \"Policies\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/read\",\r\n \"displayName\": \"Read Policies.\",\r\n \"description\": \"Read Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/write\",\r\n \"displayName\": \"Add or modify Policies.\",\r\n \"description\": \"Add or modify Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/delete\",\r\n \"displayName\": \"Delete Policies.\",\r\n \"description\": \"Delete Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/vmtemplates\",\r\n \"displayName\": \"VM Templates\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/read\",\r\n \"displayName\": \"Read VM Templates.\",\r\n \"description\": \"Read VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/write\",\r\n \"displayName\": \"Add or modify VM Templates.\",\r\n \"description\": \"Add or modify VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/delete\",\r\n \"displayName\": \"Delete VM Templates.\",\r\n \"description\": \"Delete VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"environments\",\r\n \"displayName\": \"Environments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/read\",\r\n \"displayName\": \"Read Environments.\",\r\n \"description\": \"Read Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/write\",\r\n \"displayName\": \"Add or modify Environments.\",\r\n \"description\": \"Add or modify Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/delete\",\r\n \"displayName\": \"Delete Environments.\",\r\n \"description\": \"Delete Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DevTestLab\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DevTestLab\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"displayName\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"displayName\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"displayName\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"displayName\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventHubs/consumergroups\",\r\n \"displayName\": \"ConsumerGroup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"displayName\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"displayName\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"displayName\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs/authorizationRules\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get EventHub Listkeys\",\r\n \"description\": \"Get the Connection String to EventHub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.EventHub\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.EventHub\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services (LCS)\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"lcsprojects\",\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services project\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/read\",\r\n \"displayName\": \"Read LCS projects\",\r\n \"description\": \"Display Microsoft Dynamics Lifecycle Services projects that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/write\",\r\n \"displayName\": \"Create and update LCS projects\",\r\n \"description\": \"Create and update Microsoft Dynamics Lifecycle Services projects that belong to the user. Only the name and description properties can be updated. The subscription and location associated with the project cannot be updated after creation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/delete\",\r\n \"displayName\": \"Delete LCS projects\",\r\n \"description\": \"Delete Microsoft Dynamics Lifecycle Services projects that belong to the user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"lcsprojects/clouddeployments\",\r\n \"displayName\": \"Microsoft Dynamics AX 2012 deployments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/read\",\r\n \"displayName\": \"Read Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Display Microsoft Dynamics AX 2012 R3 Evaluation deployments in a Microsoft Dynamics Lifecycle Services project that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/write\",\r\n \"displayName\": \"Create Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Create Microsoft Dynamics AX 2012 R3 Evaluation deployment in a Microsoft Dynamics Lifecycle Services project that belong to a user. Deployments can be managed from Azure management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DynamicsLcs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DynamicsLcs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Resources\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"marketplace\",\r\n \"displayName\": \"Marketplace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/marketplace/purchase/action\",\r\n \"displayName\": \"Purchase Resource\",\r\n \"description\": \"Purchases a resource from the marketplace.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions\",\r\n \"displayName\": \"Subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/read\",\r\n \"displayName\": \"Get Subscriptions\",\r\n \"description\": \"Gets the list of subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/providers\",\r\n \"displayName\": \"Resource Providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"displayName\": \"Get Resource Providers\",\r\n \"description\": \"Gets or lists resource providers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames\",\r\n \"displayName\": \"Subscription Tag\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/read\",\r\n \"displayName\": \"Get Subscription Tag\",\r\n \"description\": \"Gets or lists subscription tags.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/write\",\r\n \"displayName\": \"Add Subscription Tag\",\r\n \"description\": \"Adds a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/delete\",\r\n \"displayName\": \"Delete Subscription Tag\",\r\n \"description\": \"Deletes a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames/tagValues\",\r\n \"displayName\": \"Subscription Tag Value\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/read\",\r\n \"displayName\": \"Get Subscription Tag Value\",\r\n \"description\": \"Gets or lists subscription tag values.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/write\",\r\n \"displayName\": \"Add Subscription Tag Value\",\r\n \"description\": \"Adds a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/delete\",\r\n \"displayName\": \"Delete Subscription Tag Value\",\r\n \"description\": \"Deletes a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resources\",\r\n \"displayName\": \"Subscription Resource\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"displayName\": \"Get Subscription Resources\",\r\n \"description\": \"Gets resources of a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resourceGroups\",\r\n \"displayName\": \"Resource Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"displayName\": \"Get Resource Group\",\r\n \"description\": \"Gets or lists resource groups.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"displayName\": \"Create Resource Group\",\r\n \"description\": \"Creates or updates a resource group.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"displayName\": \"Delete Resource Group\",\r\n \"description\": \"Deletes a resource group and all its resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"displayName\": \"Move Resource Group Resources\",\r\n \"description\": \"Moves resources from one resource group to another.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/locations\",\r\n \"displayName\": \"Location\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/locations/read\",\r\n \"displayName\": \"Get Locations\",\r\n \"description\": \"Gets the list of locations supported.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"links\",\r\n \"displayName\": \"Resource Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/links/read\",\r\n \"displayName\": \"Get Resource Link\",\r\n \"description\": \"Gets or lists resource links.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/write\",\r\n \"displayName\": \"Create Resource Link\",\r\n \"description\": \"Creates or updates a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/delete\",\r\n \"displayName\": \"Delete Resource Link\",\r\n \"description\": \"Deletes a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"tenants\",\r\n \"displayName\": \"Tenant\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/tenants/read\",\r\n \"displayName\": \"Get Tenants\",\r\n \"description\": \"Gets the list of tenants.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments\",\r\n \"displayName\": \"Deployment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/read\",\r\n \"displayName\": \"Get Deployment\",\r\n \"description\": \"Gets or lists deployments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/write\",\r\n \"displayName\": \"Create Deployment\",\r\n \"description\": \"Creates or updates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/delete\",\r\n \"displayName\": \"Delete Deployment\",\r\n \"description\": \"Deletes a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/cancel/action\",\r\n \"displayName\": \"Cancel Deployment\",\r\n \"description\": \"Cancels a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/validate/action\",\r\n \"displayName\": \"Validate Deployment\",\r\n \"description\": \"Validates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments/operations\",\r\n \"displayName\": \"Deployment Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/operations/read\",\r\n \"displayName\": \"Get Deployment Operation\",\r\n \"description\": \"Gets or lists deployment operations.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Resources\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Resources\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Support\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"supportTickets\",\r\n \"displayName\": \"Support Ticket\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/read\",\r\n \"displayName\": \"Reads Support Ticket\",\r\n \"description\": \"Gets Support Ticket details (including status, severity, contact details and communications) or gets the list of Support Tickets across subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/write\",\r\n \"displayName\": \"Writes Support Ticket\",\r\n \"description\": \"Creates or Updates a Support Ticket. You can create a Support Ticket for Technical, Billing, Quotas or Subscription Management related issues. You can update severity, contact details and communications for existing support tickets.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.support\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.support\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Logic\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"workflows\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"displayName\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"displayName\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"displayName\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"displayName\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"displayName\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"displayName\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"displayName\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"displayName\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunRate\",\r\n \"displayName\": \"Run Rate\",\r\n \"displayDescription\": \"Rate of workflow run.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessPercentage\",\r\n \"displayName\": \"Run Success Percentage\",\r\n \"displayDescription\": \"Percentage of succeeded workflow runs over completed workflow runs.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/versions\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"displayName\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs\",\r\n \"displayName\": \"Workflow Run\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"displayName\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"displayName\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/actions\",\r\n \"displayName\": \"Workflow Run Action\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"displayName\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/operations\",\r\n \"displayName\": \"Workflow Run Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"displayName\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers\",\r\n \"displayName\": \"Trigger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"displayName\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"displayName\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Trigger Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Trigger Metric Definition\",\r\n \"description\": \"Reads workflow trigger metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerRate\",\r\n \"displayName\": \"Trigger Rate \",\r\n \"displayDescription\": \"Rate of workflow trigger.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessPercentage\",\r\n \"displayName\": \"Trigger Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow triggers over completed workflow trigger.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSkipPercentage\",\r\n \"displayName\": \"Trigger Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFirePercentage\",\r\n \"displayName\": \"Trigger Fire Percentage \",\r\n \"displayDescription\": \"Percentage of fired workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Trigger Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Reads the workflow trigger diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow trigger diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/histories\",\r\n \"displayName\": \"Trigger Histories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"displayName\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/accessKeys\",\r\n \"displayName\": \"Access Key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"displayName\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"displayName\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"displayName\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"displayName\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"displayName\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Action Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Action Metric Definition\",\r\n \"description\": \"Reads workflow action metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionRate\",\r\n \"displayName\": \"Action Rate\",\r\n \"displayDescription\": \"Rate of workflow action.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessPercentage\",\r\n \"displayName\": \"Action Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSkipPercentage\",\r\n \"displayName\": \"Action Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Action Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Action Diagnostic Setting\",\r\n \"description\": \"Reads the workflow action diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Action Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow action diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Logic\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Logic\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicNetwork\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"gatewaySupportedDevices\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/gatewaySupportedDevices/read\",\r\n \"displayName\": \"List Supported Devices\",\r\n \"description\": \"Retrieves the list of supported devices.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps\",\r\n \"displayName\": \"Reserved Ip\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"displayName\": \"Get Reserved Ips\",\r\n \"description\": \"Gets the reserved Ips\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/write\",\r\n \"displayName\": \"Add Reserved Ip\",\r\n \"description\": \"Add a new reserved Ip\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/delete\",\r\n \"displayName\": \"Delete Reserved Ip\",\r\n \"description\": \"Delete a reserved Ip.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/write\",\r\n \"displayName\": \"Add Virtual Network\",\r\n \"description\": \"Add a new virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network.\",\r\n \"description\": \"Deletes the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/checkIPAddressAvailability/action\",\r\n \"displayName\": \"Availability of an IP address in a given virtual network.\",\r\n \"description\": \"Checks the availability of a given IP address in a virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/read\",\r\n \"displayName\": \"Get Virtual Network Gateways\",\r\n \"description\": \"Gets the virtual network gateways.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/write\",\r\n \"displayName\": \"Add Virtual Network Gateway\",\r\n \"description\": \"Adds a virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/delete\",\r\n \"displayName\": \"Delete Virtual Network Gateway\",\r\n \"description\": \"Deletes the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/startDiagnostics/action\",\r\n \"displayName\": \"Start Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Starts diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/stopDiagnostics/action\",\r\n \"displayName\": \"Stop Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Stops the diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDiagnostics/action\",\r\n \"displayName\": \"Download Gateway Diagnostics\",\r\n \"description\": \"Downloads the gateway diagnostics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listCircuitServiceKey/action\",\r\n \"displayName\": \"Get Circuit Service Key\",\r\n \"description\": \"Retrieves the circuit service key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDeviceConfigurationScript/action\",\r\n \"displayName\": \"Download Configuration Script\",\r\n \"description\": \"Downloads the device configuration script.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listPackage/action\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/packages\",\r\n \"displayName\": \"Virtual Network Gateway Package\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/packages/read\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Gets the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/connections\",\r\n \"displayName\": \"Gateway Connection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/read\",\r\n \"displayName\": \"Get Conection List\",\r\n \"description\": \"Retrieves the list of connections.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/connect/action\",\r\n \"displayName\": \"Connect Gateway Connection\",\r\n \"description\": \"Connects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/disconnect/action\",\r\n \"displayName\": \"Disconnect Gateway Connection\",\r\n \"description\": \"Disconnects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/test/action\",\r\n \"displayName\": \"Test Gateway Connection\",\r\n \"description\": \"Tests a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRevokedCertificates\",\r\n \"displayName\": \"Geteway Client Revoked Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/read\",\r\n \"displayName\": \"Get Revoked Certificates.\",\r\n \"description\": \"Read the revoked client certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/write\",\r\n \"displayName\": \"Revoke Client Certificate\",\r\n \"description\": \"Revokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/delete\",\r\n \"displayName\": \"Unrevoke Client Certificate.\",\r\n \"description\": \"Unrevokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRootCertificates\",\r\n \"displayName\": \"Geteway Client Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/read\",\r\n \"displayName\": \"Get Client Root Certificates.\",\r\n \"description\": \"Find the client root certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/write\",\r\n \"displayName\": \"Upload Client Root Certificate\",\r\n \"description\": \"Uploads a new client root certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/delete\",\r\n \"displayName\": \"Delete Client Root Certificate.\",\r\n \"description\": \"Deletes the virtual network gateway client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/download/action\",\r\n \"displayName\": \"Downloads Certificate\",\r\n \"description\": \"Downloads certificate by thumbprint.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/listPackage/action\",\r\n \"displayName\": \"List Virtual Network Gateway\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicNetwork\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicNetwork\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Marketplace Ordering\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"agreements/offers/plans\",\r\n \"displayName\": \"Agreement\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/read\",\r\n \"displayName\": \"Get Agreement\",\r\n \"description\": \"Return an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/sign/action\",\r\n \"displayName\": \"Sign Agreement\",\r\n \"description\": \"Sign an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/cancel/action\",\r\n \"displayName\": \"Cancel Agreement\",\r\n \"description\": \"Cancel an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.MarketplaceOrdering\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.MarketplaceOrdering\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/NewRelic.APM\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"NewRelic.APM\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Devices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Devices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BigAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BigAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Sendgrid.Email\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Sendgrid.Email\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Compute\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Features\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Features\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Batch\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Batch\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLake\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLake\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.visualstudio\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.visualstudio\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataConnect\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataConnect\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cdn\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cdn\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Kona\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Kona\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/SuccessBricks.ClearDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"SuccessBricks.ClearDB\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.StreamAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.StreamAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BizTalkServices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BizTalkServices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ADHybridHealthService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ADHybridHealthService\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"displayName\": \"Microsoft Domains\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/generateSsoRequest/Action\",\r\n \"displayName\": \"Generate Domain Control Center Single Sign On Request\",\r\n \"description\": \"Generate a request for signing into domain control center.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action\",\r\n \"displayName\": \"Domain Purchase Info Validation\",\r\n \"description\": \"Validate domain purchase object without submitting it\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/checkDomainAvailability/Action\",\r\n \"displayName\": \"Check Domain Availablity\",\r\n \"description\": \"Check if a domain is available for purchase\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/listDomainRecommendations/Action\",\r\n \"displayName\": \"Retrieve Domain Recommendations\",\r\n \"description\": \"Retrieve the list domain recommendations based on keywords\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"domains\",\r\n \"displayName\": \"Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Read\",\r\n \"displayName\": \"Get Domains\",\r\n \"description\": \"Get the list of domains\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Write\",\r\n \"displayName\": \"Add or Update Domain\",\r\n \"description\": \"Add a new Domain or update an existing one\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Delete\",\r\n \"displayName\": \"Delete Domain\",\r\n \"description\": \"Delete an existing domain.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domains/operationresults\",\r\n \"displayName\": \"Domain operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/operationresults/Read\",\r\n \"displayName\": \"Get Domain Operation\",\r\n \"description\": \"Get a domain operation\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DomainRegistration\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DomainRegistration\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicCompute\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/checkDomainNameAvailability/action\",\r\n \"displayName\": \"Availability For A Domain Name\",\r\n \"description\": \"Checks the availability of a given domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"resourceTypes/skus\",\r\n \"displayName\": \"Sku\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/resourceTypes/skus/read\",\r\n \"displayName\": \"Get Supported Skus\",\r\n \"description\": \"Gets the Sku list for supported resource types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames\",\r\n \"displayName\": \"Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/read\",\r\n \"displayName\": \"Gets Domain Names\",\r\n \"description\": \"Return the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/write\",\r\n \"displayName\": \"Add Domain Names\",\r\n \"description\": \"Add or modify the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/delete\",\r\n \"displayName\": \"Remove Domain Names\",\r\n \"description\": \"Remove the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/swap/action\",\r\n \"displayName\": \"Swap Staging And Production Slots\",\r\n \"description\": \"Swaps the staging slot to the production slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates\",\r\n \"displayName\": \"Service Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/read\",\r\n \"displayName\": \"Get The Certificates\",\r\n \"description\": \"Returns the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/write\",\r\n \"displayName\": \"Add Service Certificates\",\r\n \"description\": \"Add or modify the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/delete\",\r\n \"displayName\": \"Delete Service Certificates\",\r\n \"description\": \"Delete the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions\",\r\n \"displayName\": \"Domain Name Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/read\",\r\n \"displayName\": \"Get The Domain Name Extensions\",\r\n \"description\": \"Returns the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/write\",\r\n \"displayName\": \"Add Domain Name Extensions\",\r\n \"description\": \"Add the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/delete\",\r\n \"displayName\": \"Remove Domain Name Extensions\",\r\n \"description\": \"Remove the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/active\",\r\n \"displayName\": \"Active Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/active/write\",\r\n \"displayName\": \"Set Active Domain Name\",\r\n \"description\": \"Sets the active domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots\",\r\n \"displayName\": \"Deployment Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/read\",\r\n \"displayName\": \"Get Deploymen Slots\",\r\n \"description\": \"Shows the deployment slots.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/write\",\r\n \"displayName\": \"Create Deployment Slot\",\r\n \"description\": \"Creates or update the deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/delete\",\r\n \"displayName\": \"Delete Deployment Slot\",\r\n \"description\": \"Deletes a given deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/start/action\",\r\n \"displayName\": \"Start Deployment Slot\",\r\n \"description\": \"Starts a deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/stop/action\",\r\n \"displayName\": \"Suspend Deployment Slot\",\r\n \"description\": \"Suspends the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles\",\r\n \"displayName\": \"Deployment Slot Role\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/read\",\r\n \"displayName\": \"Get Deployment Slot Role\",\r\n \"description\": \"Get the role for the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences\",\r\n \"displayName\": \"Deployment Slot Role Extension Reference\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/read\",\r\n \"displayName\": \"Get Deployment Slot Role Extension Reference\",\r\n \"description\": \"Returns the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/write\",\r\n \"displayName\": \"Add Deployment Slot Role Extension Reference\",\r\n \"description\": \"Add or modify the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/delete\",\r\n \"displayName\": \"Remove Deployment Slot Role Extension Reference\",\r\n \"description\": \"Remove the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances\",\r\n \"displayName\": \"Role Instance\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/read\",\r\n \"displayName\": \"Get Role Instance\",\r\n \"description\": \"Get the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/restart/action\",\r\n \"displayName\": \"Restart Role Instance\",\r\n \"description\": \"Restarts role instances.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/reimage/action\",\r\n \"displayName\": \"Reimage Role Instance\",\r\n \"description\": \"Reimages the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/start\",\r\n \"displayName\": \"Deployment Slot Start\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/start/write\",\r\n \"displayName\": \"Stop Deployment State\",\r\n \"description\": \"Changes the deployment slot state to stopped.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/stop\",\r\n \"displayName\": \"Deployment Slot Stopped\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/stop/write\",\r\n \"displayName\": \"Start Deployment State\",\r\n \"description\": \"Changes the deployment slot state to started.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/upgradeDomain\",\r\n \"displayName\": \"Upgrade Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/upgradeDomain/write\",\r\n \"displayName\": \"Upgrade The Domain\",\r\n \"description\": \"Walk upgrade the domain.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers\",\r\n \"displayName\": \"Internal Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/read\",\r\n \"displayName\": \"Get Internal Load Balancers.\",\r\n \"description\": \"Gets the internal load balancers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/write\",\r\n \"displayName\": \"Create Internal Load Balance\",\r\n \"description\": \"Creates a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/delete\",\r\n \"displayName\": \"Remove Internal Load Balance\",\r\n \"description\": \"Remove a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets\",\r\n \"displayName\": \"Load Balanced Endpoint Sets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/read\",\r\n \"displayName\": \"Get Load Balanced Endpoint Sets\",\r\n \"description\": \"Shows the load balanced endpoint sets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/availabilitySets\",\r\n \"displayName\": \"Availability Set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/availabilitySets/read\",\r\n \"displayName\": \"Show Availability Set\",\r\n \"description\": \"Show the availability set for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines\",\r\n \"displayName\": \"Virtual Machine\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/read\",\r\n \"displayName\": \"Retrieve Virtual Machines\",\r\n \"description\": \"Retrieves list of virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/write\",\r\n \"displayName\": \"Add Virtual Machines\",\r\n \"description\": \"Add or modify virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/delete\",\r\n \"displayName\": \"Remove Virtual Machines\",\r\n \"description\": \"Removes virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/start/action\",\r\n \"displayName\": \"Start Virtual Machine\",\r\n \"description\": \"Start the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/restart/action\",\r\n \"displayName\": \"Restart Virtual Machine\",\r\n \"description\": \"Restarts virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/stop/action\",\r\n \"displayName\": \"Stop Virtual Machine\",\r\n \"description\": \"Stops the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/shutdown/action\",\r\n \"displayName\": \"Shutdown Virtual Machine\",\r\n \"description\": \"Shutdown the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/attachDisk/action\",\r\n \"displayName\": \"Attach Data Disk\",\r\n \"description\": \"Attaches a data disk to a virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/detachDisk/action\",\r\n \"displayName\": \"Detach Data Disk\",\r\n \"description\": \"Detaches a data disk from virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/downloadRemoteDesktopConnectionFile/action\",\r\n \"displayName\": \"Download RDP File\",\r\n \"description\": \"Downloads the RDP file for virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions\",\r\n \"displayName\": \"Virtual Machine Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/read\",\r\n \"displayName\": \"Get Virtual Machine Extension\",\r\n \"description\": \"Gets the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/write\",\r\n \"displayName\": \"Add Virtual Machine Extension\",\r\n \"description\": \"Puts the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/asyncOperations\",\r\n \"displayName\": \"Virtual Machine Async Operations\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/asyncOperations/read\",\r\n \"displayName\": \"Async Operations\",\r\n \"description\": \"Gets the possible async operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/disks\",\r\n \"displayName\": \"Virtual Machine Disk\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/disks/read\",\r\n \"displayName\": \"Get Data Disks\",\r\n \"description\": \"Retrives list of data disks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicCompute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicCompute\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft SQL Database\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"servers\",\r\n \"displayName\": \"Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/import/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/upgrade/action\",\r\n \"displayName\": \"Upgrade server version\",\r\n \"description\": \"Enable new functionality available on the latest version of server and specify databases edition conversion map\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/operationResults\",\r\n \"displayName\": \"Server Upgrade Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/read\",\r\n \"displayName\": \"Get status of server upgrade operation\",\r\n \"description\": \"Operation is used to track progress of server upgrade from lower version to higher\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/delete\",\r\n \"displayName\": \"Cancel server upgrade\",\r\n \"description\": \"Abort server version upgrade in progress\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recoverableDatabases\",\r\n \"displayName\": \"Recoverable Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recoverableDatabases/read\",\r\n \"displayName\": \"Get the last known database recovery point\",\r\n \"description\": \"This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/serviceObjectives\",\r\n \"displayName\": \"Service Level Objective\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/serviceObjectives/read\",\r\n \"displayName\": \"Get service level objectives\",\r\n \"description\": \"Retrieve list of service level objectives (also known as performance tiers) available on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/firewallRules\",\r\n \"displayName\": \"Server Firewall Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/read\",\r\n \"displayName\": \"Get server firewall rules\",\r\n \"description\": \"Retrieve server firewall rule details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/write\",\r\n \"displayName\": \"Create new or update existing server firewall rule\",\r\n \"description\": \"Create or update server firewall rule that controls IP address range allowed to connect to the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/delete\",\r\n \"displayName\": \"Delete server firewall rule\",\r\n \"description\": \"Delete firewall rule from the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools\",\r\n \"displayName\": \"Recommended Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/read\",\r\n \"displayName\": \"Get recommended elastic database pools\",\r\n \"description\": \"Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historica resource utilization\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/metrics\",\r\n \"displayName\": \"Recommended Elastic Database Pool Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/metrics/read\",\r\n \"displayName\": \"Get recommended elastic database pools metrics\",\r\n \"description\": \"Retrieve metrics for recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/databases\",\r\n \"displayName\": \"Recommended Elastic Pool Databases\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/databases/read\",\r\n \"displayName\": \"Get recommended elastic pools databases\",\r\n \"description\": \"Retrieve databases that should be added into recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools\",\r\n \"displayName\": \"Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/read\",\r\n \"displayName\": \"Get elastic database pool details\",\r\n \"description\": \"Retrieve details of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/write\",\r\n \"displayName\": \"Create new or update existing elastic database pool\",\r\n \"description\": \"Create a new or change properties of existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/delete\",\r\n \"displayName\": \"Delete elastic database pool\",\r\n \"description\": \"Delete existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metricDefinitions\",\r\n \"displayName\": \"Elastic Database Pool Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metricDefinitions/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metric definitions\",\r\n \"description\": \"Return types of resource utilization metrics that are available for elastic database pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metrics\",\r\n \"displayName\": \"Elastic Database Pool Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metrics/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metrics\",\r\n \"description\": \"Return elastic database pool resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"displayName\": \"Elastic Pool Database Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read\",\r\n \"displayName\": \"Get elastic pool database activity\",\r\n \"description\": \"Retrieve activities and details on a given database that is part of elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolActivity\",\r\n \"displayName\": \"Elastic Database Pool Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read\",\r\n \"displayName\": \"Get elastic database pool activity\",\r\n \"description\": \"Retrieve activities and details on a given elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/databases/read\",\r\n \"displayName\": \"Get elastic pool databases\",\r\n \"description\": \"Retrieve list and details of databases that are part of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/usages\",\r\n \"displayName\": \"Server Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/usages/read\",\r\n \"displayName\": \"Get server usage details\",\r\n \"description\": \"Return server DTU quota and current DTU consuption by all databases within the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/restorableDroppedDatabases\",\r\n \"displayName\": \"Restorable Dropped Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/restorableDroppedDatabases/read\",\r\n \"displayName\": \"Get list of restorable dropped databases\",\r\n \"description\": \"Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/export/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/operationResults\",\r\n \"displayName\": \"Database Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/operationResults/read\",\r\n \"displayName\": \"Get status of database operation\",\r\n \"description\": \"Operation is used to track progress of long running database operation, such as scale.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/replicationLinks\",\r\n \"displayName\": \"Database Replication Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"displayName\": \"Get database replication links\",\r\n \"description\": \"Return a details about replication links established for a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\",\r\n \"displayName\": \"Terminate database replication\",\r\n \"description\": \"Terminate replication of a particular database with ability to specify whether link is terminated forcefully or gracefully\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"displayName\": \"Force-terminate database replication\",\r\n \"description\": \"Force-terminate database replication\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies\",\r\n \"displayName\": \"Database Data Masking Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/read\",\r\n \"displayName\": \"Get database data masking policy\",\r\n \"description\": \"Retrieve details of the data masking policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/write\",\r\n \"displayName\": \"Set database data masking policy\",\r\n \"description\": \"Change data masking policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"displayName\": \"Database Data Masking Policy Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read\",\r\n \"displayName\": \"Get database data masking policy rule\",\r\n \"description\": \"Retrieve details of the data masking policy rule configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write\",\r\n \"displayName\": \"Set database data masking policy rule\",\r\n \"description\": \"Change data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/delete\",\r\n \"displayName\": \"Delete database data masking policy rule\",\r\n \"description\": \"Delete data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metricDefinitions\",\r\n \"displayName\": \"Database Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metricDefinitions/read\",\r\n \"displayName\": \"Get database resource consumption metric definitions\",\r\n \"description\": \"Return types of metrics that are available for databases to indicate resource consuption that can be alerted on\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries\",\r\n \"displayName\": \"Database Top Queries\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/read\",\r\n \"displayName\": \"Get Top Queries for the database\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/queryText\",\r\n \"displayName\": \"Database Top Queries query text\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/queryText/read\",\r\n \"displayName\": \"Get Database Top Queries query text\",\r\n \"description\": \"Returns the Transact-SQL text for selected query ID\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/statistics\",\r\n \"displayName\": \"Database Top Queries Statistics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/statistics/read\",\r\n \"displayName\": \"Get Database Top Queries statistics\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/connectionPolicies\",\r\n \"displayName\": \"Database Connection Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/read\",\r\n \"displayName\": \"Get database connection policy\",\r\n \"description\": \"Retrieve details of the connection policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/write\",\r\n \"displayName\": \"Set database connection policy\",\r\n \"description\": \"Change connection policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metrics\",\r\n \"displayName\": \"Database Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metrics/read\",\r\n \"displayName\": \"Get database resource consumption metrics\",\r\n \"description\": \"Return database resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/transparentDataEncryption\",\r\n \"displayName\": \"Database Transparent Data Encryption\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/read\",\r\n \"displayName\": \"Get database transparent data encryption details\",\r\n \"description\": \"Retrieve status and details of transparent data encryption security feature for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/write\",\r\n \"displayName\": \"Change transparent data encryption state\",\r\n \"description\": \"Enable or disable transparent data encryption for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/auditingPolicies\",\r\n \"displayName\": \"Database Auditing Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/read\",\r\n \"displayName\": \"Get database auditing policy\",\r\n \"description\": \"Retrieve details of the auditing policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/write\",\r\n \"displayName\": \"Set database auditing policy\",\r\n \"description\": \"Change auditing policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/serviceTierAdvisors\",\r\n \"displayName\": \"Database Service Tier Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors/read\",\r\n \"displayName\": \"Get recommended database performance level\",\r\n \"description\": \"Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/usages\",\r\n \"displayName\": \"Database Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/usages/read\",\r\n \"displayName\": \"Get database usage details\",\r\n \"description\": \"Return database maxiumum size that can be reached and current size occupied by data\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/queryStore\",\r\n \"displayName\": \"Query Store settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/read\",\r\n \"displayName\": \"Get Query Store settings\",\r\n \"description\": \"Returns current values of Query Store settings for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/write\",\r\n \"displayName\": \"Update Query Store settings\",\r\n \"description\": \"Updates Query Store setting for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/recommendedIndexes\",\r\n \"displayName\": \"Recommended Index\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read\",\r\n \"displayName\": \"Get list of index recommendations\",\r\n \"description\": \"Retrieve list of index recommendations on a database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write\",\r\n \"displayName\": \"Update Recommended Index State\",\r\n \"description\": \"Apply index recommendation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/columns\",\r\n \"displayName\": \"Database table column\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"displayName\": \"Get columns\",\r\n \"description\": \"Retrieve list of columns of a table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/missingindexes\",\r\n \"displayName\": \"Database Index Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/read\",\r\n \"displayName\": \"Get recommended database indexes\",\r\n \"description\": \"Return suggestions about database indexes to create, modify or delete in order to improve query performance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/write\",\r\n \"displayName\": \"Apply recommended database index\",\r\n \"description\": \"Use database index recommendation in a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/importExportOperationResults\",\r\n \"displayName\": \"Database Import/Export Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import or export operation on the server\",\r\n \"description\": \"Return details about database import or export operation from DacPac located in storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/importExportOperationResults\",\r\n \"displayName\": \"Server Database Import Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import operation on the server\",\r\n \"description\": \"Return the list with details for database import operations from storage account on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Sql\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Sql\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft API Management\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/checkNameAvailability/action\",\r\n \"displayName\": \"Check Name Availability\",\r\n \"description\": \"Checks if provided service name is available\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"service\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/write\",\r\n \"displayName\": \"Create a new instance of API Management Service\",\r\n \"description\": \"Create a new instance of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/read\",\r\n \"displayName\": \"Read metadata for an API Management Service instance\",\r\n \"description\": \"Read metadata for an API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/delete\",\r\n \"displayName\": \"Delete API Management Service instance\",\r\n \"description\": \"Delete API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"displayName\": \"Update domain names\",\r\n \"description\": \"Setup, update or remove custom domain names for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"displayName\": \"Upload SSL certificate\",\r\n \"description\": \"Upload SSL certificate for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/checkcustomhostname/action\",\r\n \"displayName\": \"Check hostname mapping\",\r\n \"description\": \"Checks if provided host name correctly resolves to *.azure-api.net\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/action\",\r\n \"displayName\": \"Backup API Management Service\",\r\n \"description\": \"Backup API Management Service to the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/action\",\r\n \"displayName\": \"Restore API Management Service\",\r\n \"description\": \"Restore API Management Service from the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"displayName\": \"Manage Service Deployments\",\r\n \"description\": \"Change SKU/units, add/remove regional deployments of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/action\",\r\n \"displayName\": \"Manage VPN configuration\",\r\n \"description\": \"Change VPN configuration of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/operationresults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/operationresults/read\",\r\n \"displayName\": \"Get long running operation result\",\r\n \"description\": \"Gets current status of long running operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backup/operationresults\",\r\n \"displayName\": \"Backup Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/operationresults/read\",\r\n \"displayName\": \"Get backup operation result\",\r\n \"description\": \"Gets current status of backup operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/issues\",\r\n \"displayName\": \"Collection of all API Management issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/issues/read\",\r\n \"displayName\": \"Gets all API Management issues\",\r\n \"description\": \"Gets all API Management issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/loggers\",\r\n \"displayName\": \"Logger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/read\",\r\n \"displayName\": \"Gets loggers available to the current user\",\r\n \"description\": \"Gets loggers available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/write\",\r\n \"displayName\": \"Adds a new logger\",\r\n \"description\": \"Adds a new logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/delete\",\r\n \"displayName\": \"Removes existing logger\",\r\n \"description\": \"Removes existing logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users\",\r\n \"displayName\": \"User account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/read\",\r\n \"displayName\": \"Gets registered users\",\r\n \"description\": \"Gets registered users\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/write\",\r\n \"displayName\": \"Registers a new user\",\r\n \"description\": \"Registers a new user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/delete\",\r\n \"displayName\": \"Removes user account\",\r\n \"description\": \"Removes user account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/generateSsoUrl/action\",\r\n \"displayName\": \"Execute action\",\r\n \"description\": \"Execute action\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues\",\r\n \"displayName\": \"Get user issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/read\",\r\n \"displayName\": \"Get list of all user reported issues\",\r\n \"description\": \"Get list of all user reported issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/write\",\r\n \"displayName\": \"Registers an issue to API Management\",\r\n \"description\": \"Registers an issue to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/comments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/roles\",\r\n \"displayName\": \"Security roles assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/roles/read\",\r\n \"displayName\": \"Get roles\",\r\n \"description\": \"Get roles\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/subscriptions\",\r\n \"displayName\": \"Regenerates subscription key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/read\",\r\n \"displayName\": \"Gets user subscriptions\",\r\n \"description\": \"Gets user subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/write\",\r\n \"displayName\": \"Requests subscription for a new product\",\r\n \"description\": \"Requests subscription for a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/read\",\r\n \"displayName\": \"Get list of all user applications\",\r\n \"description\": \"Get list of all user applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/write\",\r\n \"displayName\": \"Add Attachment to application\",\r\n \"description\": \"Add Attachment to application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/delete\",\r\n \"displayName\": \"Removes an attachment\",\r\n \"description\": \"Removes an attachment\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/identities\",\r\n \"displayName\": \"Collection of user credentials for different identity providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities/read\",\r\n \"displayName\": \"Get identity collection\",\r\n \"description\": \"Get identity collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/keys\",\r\n \"displayName\": \"Shared access key set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/keys/read\",\r\n \"displayName\": \"Gets user keys\",\r\n \"description\": \"Gets user keys\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/groups\",\r\n \"displayName\": \"Developer groups assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/groups/read\",\r\n \"displayName\": \"Gets user groups\",\r\n \"description\": \"Gets user groups\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/settings\",\r\n \"displayName\": \"Tenant settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/read\",\r\n \"displayName\": \"Get tenant's settings\",\r\n \"description\": \"Get tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/write\",\r\n \"displayName\": \"Update tenant's settings\",\r\n \"description\": \"Update tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/policy\",\r\n \"displayName\": \"Tenant-level policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/save/action\",\r\n \"displayName\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"description\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/deploy/action\",\r\n \"displayName\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"description\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/validate/action\",\r\n \"displayName\": \"Validates changes from the specified branch\",\r\n \"description\": \"Validates changes from the specified branch\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration/operationResults\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/operationResults/read\",\r\n \"displayName\": \"Returns results of operations\",\r\n \"description\": \"Returns results of operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access\",\r\n \"displayName\": \"Tenant access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access/git\",\r\n \"displayName\": \"Tenant git access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managedeployments/operationresults\",\r\n \"displayName\": \"Manage Deployments Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/operationresults/read\",\r\n \"displayName\": \"Get manage deployments operation result\",\r\n \"description\": \"Gets current status of manage deployments operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/subscriptions\",\r\n \"displayName\": \"Product subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"displayName\": \"Gets product subscriptions\",\r\n \"description\": \"Gets product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/write\",\r\n \"displayName\": \"Subscribes user to the product\",\r\n \"description\": \"Subscribes user to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/delete\",\r\n \"displayName\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"description\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managevpn/operationresults\",\r\n \"displayName\": \"Manage VPN Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/operationresults/read\",\r\n \"displayName\": \"Get manage VPN operation result\",\r\n \"description\": \"Gets current status of manage VPN operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/read\",\r\n \"displayName\": \"Gets all all API Management applications\",\r\n \"description\": \"Gets all all API Management applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications/attachments\",\r\n \"displayName\": \"Application Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backends\",\r\n \"displayName\": \"Backend\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/read\",\r\n \"displayName\": \"Gets backends available to the current user\",\r\n \"description\": \"Gets backends available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/write\",\r\n \"displayName\": \"Adds a new backend\",\r\n \"description\": \"Adds a new backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/delete\",\r\n \"displayName\": \"Removes existing backend\",\r\n \"description\": \"Removes existing backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis\",\r\n \"displayName\": \"API\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/read\",\r\n \"displayName\": \"Get registered APIs\",\r\n \"description\": \"Get registered APIs\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/write\",\r\n \"displayName\": \"Create new API\",\r\n \"description\": \"Create new API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/delete\",\r\n \"displayName\": \"Remove API\",\r\n \"description\": \"Remove API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues\",\r\n \"displayName\": \"API issue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/read\",\r\n \"displayName\": \"Get Issues associated with API\",\r\n \"description\": \"Get Issues associated with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/write\",\r\n \"displayName\": \"Updates issue details\",\r\n \"description\": \"Updates issue details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/delete\",\r\n \"displayName\": \"Removes existing issue\",\r\n \"description\": \"Removes existing issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/comments\",\r\n \"displayName\": \"Issue Comments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/read\",\r\n \"displayName\": \"Gets issue comments\",\r\n \"description\": \"Gets issue comments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/attachments\",\r\n \"displayName\": \"Issue Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/read\",\r\n \"displayName\": \"Gets issue attachments\",\r\n \"description\": \"Gets issue attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/products\",\r\n \"displayName\": \"API associated products\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/products/read\",\r\n \"displayName\": \"Get associated Products with API\",\r\n \"description\": \"Get associated Products with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/policy\",\r\n \"displayName\": \"API policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations\",\r\n \"displayName\": \"API operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/read\",\r\n \"displayName\": \"Get API operations\",\r\n \"description\": \"Get API operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/write\",\r\n \"displayName\": \"Create new API operation\",\r\n \"description\": \"Create new API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/delete\",\r\n \"displayName\": \"Remove API operation\",\r\n \"description\": \"Remove API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations/policy\",\r\n \"displayName\": \"Operation policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas\",\r\n \"displayName\": \"API Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/read\",\r\n \"displayName\": \"Gets all the schemas stored for a given API\",\r\n \"description\": \"Gets all the schemas stored for a given API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/write\",\r\n \"displayName\": \"Sets the Schemas used by the API\",\r\n \"description\": \"Sets the Schemas used by the API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/delete\",\r\n \"displayName\": \"Removes existing Schema\",\r\n \"description\": \"Removes existing Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas/document\",\r\n \"displayName\": \"Document describing the API schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/read\",\r\n \"displayName\": \"Get the document describing the Schema\",\r\n \"description\": \"Get the document describing the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/write\",\r\n \"displayName\": \"Update the document for the Schema\",\r\n \"description\": \"Update the document for the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products\",\r\n \"displayName\": \"Product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/read\",\r\n \"displayName\": \"Gets products available to current user\",\r\n \"description\": \"Gets products available to current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/write\",\r\n \"displayName\": \"Creates a new product\",\r\n \"description\": \"Creates a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/delete\",\r\n \"displayName\": \"Removes existing product\",\r\n \"description\": \"Removes existing product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/subscriptions\",\r\n \"displayName\": \"Product subscriptions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptions/read\",\r\n \"displayName\": \"Get product subscriptions\",\r\n \"description\": \"Get product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/apis\",\r\n \"displayName\": \"API added to product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/read\",\r\n \"displayName\": \"Gets APIs included into the product\",\r\n \"description\": \"Gets APIs included into the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/write\",\r\n \"displayName\": \"Add API to product\",\r\n \"description\": \"Add API to product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/delete\",\r\n \"displayName\": \"Remove API from product\",\r\n \"description\": \"Remove API from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/policy\",\r\n \"displayName\": \"Product policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/groups\",\r\n \"displayName\": \"Assigned developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/read\",\r\n \"displayName\": \"Gets groups assigned to the product\",\r\n \"description\": \"Gets groups assigned to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/write\",\r\n \"displayName\": \"Assigns group to the product\",\r\n \"description\": \"Assigns group to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/delete\",\r\n \"displayName\": \"Removes group assignment from product\",\r\n \"description\": \"Removes group assignment from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/updatehostname/operationresults\",\r\n \"displayName\": \"Update Hostnames Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/operationresults/read\",\r\n \"displayName\": \"Get update hostnames operation result\",\r\n \"description\": \"Gets current status of update hostnames operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policySnippets\",\r\n \"displayName\": \"Collection of policy snippets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policySnippets/read\",\r\n \"displayName\": \"Get snippets\",\r\n \"description\": \"Get snippets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/read\",\r\n \"displayName\": \"Gets certificates available to the current user\",\r\n \"description\": \"Gets certificates available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/write\",\r\n \"displayName\": \"Adds a new certificate\",\r\n \"description\": \"Adds a new certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/delete\",\r\n \"displayName\": \"Removes existing certificate\",\r\n \"description\": \"Removes existing certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/templates\",\r\n \"displayName\": \"API Management email template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/read\",\r\n \"displayName\": \"Gets all email templates\",\r\n \"description\": \"Gets all email templates\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/write\",\r\n \"displayName\": \"Updates email template\",\r\n \"description\": \"Updates email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/delete\",\r\n \"displayName\": \"Reset existing email template\",\r\n \"description\": \"Reset existing email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/regions\",\r\n \"displayName\": \"Service Regions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/regions/read\",\r\n \"displayName\": \"Gets service regions\",\r\n \"description\": \"Gets service regions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policyChecks\",\r\n \"displayName\": \"Collection of policy checks\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policyChecks/read\",\r\n \"displayName\": \"Get policy checks\",\r\n \"description\": \"Get policy checks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/restore/operationresults\",\r\n \"displayName\": \"Restore Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/operationresults/read\",\r\n \"displayName\": \"Get restore operation result\",\r\n \"description\": \"Gets current status of restore operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/properties\",\r\n \"displayName\": \"Configuration property\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/read\",\r\n \"displayName\": \"Gets list of all properties\",\r\n \"description\": \"Gets list of all properties\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/write\",\r\n \"displayName\": \"Creates a new property\",\r\n \"description\": \"Creates a new property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/delete\",\r\n \"displayName\": \"Removes existing property\",\r\n \"description\": \"Removes existing property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups\",\r\n \"displayName\": \"Developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/read\",\r\n \"displayName\": \"Gets existing groups details\",\r\n \"description\": \"Gets existing groups details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/write\",\r\n \"displayName\": \"Creates a new group\",\r\n \"description\": \"Creates a new group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/delete\",\r\n \"displayName\": \"Removes existing group\",\r\n \"description\": \"Removes existing group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups/users\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/read\",\r\n \"displayName\": \"Gets group members\",\r\n \"description\": \"Gets group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/write\",\r\n \"displayName\": \"Includes user in the group\",\r\n \"description\": \"Includes user in the group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/delete\",\r\n \"displayName\": \"Removes user from group members\",\r\n \"description\": \"Removes user from group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/getssotoken\",\r\n \"displayName\": \"SSO Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/getssotoken/read\",\r\n \"displayName\": \"Get SSO token\",\r\n \"description\": \"Gets SSO token that can be used to login into API Management Service portal as an administrator\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/authorizationServers\",\r\n \"displayName\": \"OAuth Authorization Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"displayName\": \"Get authorization servers list\",\r\n \"description\": \"Get authorization servers list\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/write\",\r\n \"displayName\": \"Creates a new authorization server\",\r\n \"description\": \"Creates a new authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/delete\",\r\n \"displayName\": \"Removes authorization server\",\r\n \"description\": \"Removes authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications\",\r\n \"displayName\": \"Azure Active Directory Application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/read\",\r\n \"displayName\": \"Gets all Azure Active Directory Applications\",\r\n \"description\": \"Gets all Azure Active Directory Applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory Application\",\r\n \"description\": \"Registers a new Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/delete\",\r\n \"displayName\": \"Removes Azure Active Directory Application\",\r\n \"description\": \"Removes Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications/directories\",\r\n \"displayName\": \"Azure Active Directory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/read\",\r\n \"displayName\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"description\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory\",\r\n \"description\": \"Registers a new Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/delete\",\r\n \"displayName\": \"Removes Azure Active Directory\",\r\n \"description\": \"Removes Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applicationCategory\",\r\n \"displayName\": \"CAPI Management application categories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applicationCategory/read\",\r\n \"displayName\": \"Gets all Application categories\",\r\n \"description\": \"Gets all Application categories\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ApiManagement\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ApiManagement\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure ServiceBus\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/write\",\r\n \"displayName\": \"Create or Update Relay\",\r\n \"description\": \"Create or Update Relay properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/read\",\r\n \"displayName\": \"Get Relay\",\r\n \"description\": \"Get list of Relay Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/Delete\",\r\n \"displayName\": \"Delete Relay\",\r\n \"description\": \"Operation to delete Relay Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/action\",\r\n \"displayName\": \" Get Relay Authorization Rules\",\r\n \"description\": \" Get the list of Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays/authorizationRules\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Relay Authorization Rule\",\r\n \"description\": \"Create Relay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/delete\",\r\n \"displayName\": \"Delete Relay Authorization Rules\",\r\n \"description\": \"Operation to delete Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Relay Listkeys\",\r\n \"description\": \"Get the Connection String to Relay\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/write\",\r\n \"displayName\": \"Create or Update Queue\",\r\n \"description\": \"Create or Update Queue properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/read\",\r\n \"displayName\": \"Get Queue\",\r\n \"description\": \"Get list of Queue Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/Delete\",\r\n \"displayName\": \"Delete Queue\",\r\n \"description\": \"Operation to delete Queue Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/action\",\r\n \"displayName\": \" Get Queue Authorization Rules\",\r\n \"description\": \" Get the list of Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues/authorizationRules\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Queue Authorization Rule\",\r\n \"description\": \"Create Queue Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/delete\",\r\n \"displayName\": \"Delete Queue Authorization Rules\",\r\n \"description\": \"Operation to delete Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Queue Listkeys\",\r\n \"description\": \"Get the Connection String to Queue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/write\",\r\n \"displayName\": \"Create or Update Topic\",\r\n \"description\": \"Create or Update Topic properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/read\",\r\n \"displayName\": \"Get Topic\",\r\n \"description\": \"Get list of Topic Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/Delete\",\r\n \"displayName\": \"Delete Topic\",\r\n \"description\": \"Operation to delete Topic Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/action\",\r\n \"displayName\": \" Get Topic Authorization Rules\",\r\n \"description\": \" Get the list of Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/authorizationRules\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Topic Authorization Rule\",\r\n \"description\": \"Create Topic Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/delete\",\r\n \"displayName\": \"Delete Topic Authorization Rules\",\r\n \"description\": \"Operation to delete Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Topic Listkeys\",\r\n \"description\": \"Get the Connection String to Topic\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/subscriptions\",\r\n \"displayName\": \"TopicSubscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/write\",\r\n \"displayName\": \"Create or Update TopicSubscription\",\r\n \"description\": \"Create or Update TopicSubscription properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/read\",\r\n \"displayName\": \"Get TopicSubscription\",\r\n \"description\": \"Get list of TopicSubscription Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/Delete\",\r\n \"displayName\": \"Delete TopicSubscription\",\r\n \"description\": \"Operation to delete TopicSubscription Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"premiumMessagingRegions\",\r\n \"displayName\": \"Non Resource Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/premiumMessagingRegions/read\",\r\n \"displayName\": \"Get premium messaging regions.\",\r\n \"description\": \"Get premium messaging regions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ServiceBus\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ServiceBus\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DocumentDb\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/action\",\r\n \"displayName\": \"Create database account\",\r\n \"description\": \"Create a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"databaseAccountNames\",\r\n \"displayName\": \"Database Account Names\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccountNames/read\",\r\n \"displayName\": \"Read database account names\",\r\n \"description\": \"Checks for name availability.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts\",\r\n \"displayName\": \"Database Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"displayName\": \"Read database account\",\r\n \"description\": \"Reads a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"displayName\": \"Update database account\",\r\n \"description\": \"Update a database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"displayName\": \"Delete database accounts\",\r\n \"description\": \"Deletes the database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metricDefinitions\",\r\n \"displayName\": \"Database Accoun metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metricDefinitions/read\",\r\n \"displayName\": \"Read database account metrics definitions\",\r\n \"description\": \"Reads the database account metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metrics\",\r\n \"displayName\": \"Database Account metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metrics/read\",\r\n \"displayName\": \"Read database account metrics\",\r\n \"description\": \"Reads the database account metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/usages\",\r\n \"displayName\": \"Database Account usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/usages/read\",\r\n \"displayName\": \"Read database account usages\",\r\n \"description\": \"Reads the database account usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metricDefinitions\",\r\n \"displayName\": \"Collection metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metricDefinitions/read\",\r\n \"displayName\": \"Read collection metric definitions\",\r\n \"description\": \"Reads the collection metric definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metrics\",\r\n \"displayName\": \"Collection metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metrics/read\",\r\n \"displayName\": \"Read collection metrics\",\r\n \"description\": \"Reads the collection metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/usages\",\r\n \"displayName\": \"Collection usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/usages/read\",\r\n \"displayName\": \"Read collection usages\",\r\n \"description\": \"Reads the collection usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metricDefinitions\",\r\n \"displayName\": \"Database metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metricDefinitions/read\",\r\n \"displayName\": \"Read database metric definitions\",\r\n \"description\": \"Reads the database metric definitions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metrics\",\r\n \"displayName\": \"Database metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metrics/read\",\r\n \"displayName\": \"Read database metrics\",\r\n \"description\": \"Reads the database metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/usages\",\r\n \"displayName\": \"Database usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/usages/read\",\r\n \"displayName\": \"Read database usages\",\r\n \"description\": \"Reads the database usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/readonlykeys\",\r\n \"displayName\": \"Database Account readonly keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/read\",\r\n \"displayName\": \"Read database account readonly keys\",\r\n \"description\": \"Reads the database account readonly keys.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DocumentDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DocumentDB\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Automation\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"automationAccounts\",\r\n \"displayName\": \"Azure Automation Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/configurations\",\r\n \"displayName\": \"Azure Automation Desired State Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get an Azure Automation DSC's content\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobSchedules\",\r\n \"displayName\": \"Azure Automation Job Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connectionTypes\",\r\n \"displayName\": \"Azure Automation Connection Type Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/modules\",\r\n \"displayName\": \"Azure Automation Module\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/credentials\",\r\n \"displayName\": \"Azure Automation Credential Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/certificates\",\r\n \"displayName\": \"Azure Automation Certificate Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/schedules\",\r\n \"displayName\": \"Azure Automation Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs\",\r\n \"displayName\": \"Azure Automation Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs/streams\",\r\n \"displayName\": \"Azure Automation Job Stream\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job stream\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connections\",\r\n \"displayName\": \"Azure Automation Connection Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/variables\",\r\n \"displayName\": \"Azure Automation Variable Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks\",\r\n \"displayName\": \"Azure Automation Runbook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft\",\r\n \"displayName\": \"Azure Automation Runbook Draft\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/writeContent/action\",\r\n \"displayName\": \"Write Content\",\r\n \"description\": \"Create the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/publish/action\",\r\n \"displayName\": \"Publish\",\r\n \"description\": \"Publish an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/undoEdit/action\",\r\n \"displayName\": \"Undo Edit\",\r\n \"description\": \"Undo edits to an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft/testJob\",\r\n \"displayName\": \"Azure Automation Runbook Draft Test Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/webhooks\",\r\n \"displayName\": \"Azure Automation Webhook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation webhook \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/generateUri/action\",\r\n \"displayName\": \"Generate URI\",\r\n \"description\": \"Generate a URI for an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Automation\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Automation\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft authorization\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"classicAdministrators\",\r\n \"displayName\": \"Classic subscription administrator\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"displayName\": \"Get administrator\",\r\n \"description\": \"Reads the administrators for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/write\",\r\n \"displayName\": \"Set administrator\",\r\n \"description\": \"Add or modify administrator to a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/delete\",\r\n \"displayName\": \"Delete administrator\",\r\n \"description\": \"Removes the administrator from the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locks\",\r\n \"displayName\": \"Management lock\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/read\",\r\n \"displayName\": \"Get management locks\",\r\n \"description\": \"Gets locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/write\",\r\n \"displayName\": \"Add management locks\",\r\n \"description\": \"Add locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/delete\",\r\n \"displayName\": \"Delete management locks\",\r\n \"description\": \"Delete locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"permissions\",\r\n \"displayName\": \"Permission\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/permissions/read\",\r\n \"displayName\": \"List permissions\",\r\n \"description\": \"Lists all the permissions the caller has at a given scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleDefinitions\",\r\n \"displayName\": \"Role definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"displayName\": \"Get role definition\",\r\n \"description\": \"Get information about a role definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleAssignments\",\r\n \"displayName\": \"Role assignment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/read\",\r\n \"displayName\": \"Get role assignment\",\r\n \"description\": \"Get information about a role assignment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/write\",\r\n \"displayName\": \"Create role assignment\",\r\n \"description\": \"Create a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"displayName\": \"Delete role assignment\",\r\n \"description\": \"Delete a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Authorization\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Authorization\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Storage\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/write\",\r\n \"displayName\": \"Create/Update Storage Account\",\r\n \"description\": \"Creates a storage account with the specified parameters or update the properties or tags or adds custom domain for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Deletes an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"displayName\": \"List Storage Account Keys\",\r\n \"description\": \"Returns the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"displayName\": \"Regenerate Storage Account Keys\",\r\n \"description\": \"Regenerates the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/read\",\r\n \"displayName\": \"List/Get Storage Account(s)\",\r\n \"description\": \"Returns the list of storage accounts or gets the properties for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/checknameavailability\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/checknameavailability/read\",\r\n \"displayName\": \"Check Account Name Availability\",\r\n \"description\": \"Checks that account name is valid and is not in use.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/usages\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/usages/read\",\r\n \"displayName\": \"Get Subscription Usages\",\r\n \"description\": \"Returns the limit and the current usage count for resources in the specified subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Storage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/register/action\",\r\n \"displayName\": \"Register Subscription\",\r\n \"description\": \"Registers the subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"dnszones\",\r\n \"displayName\": \"DNS Zone\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/read\",\r\n \"displayName\": \"Get DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/write\",\r\n \"displayName\": \"Create or Update DNS Zone\",\r\n \"description\": \"Create or update a DNS zone within a resource group. Used to update the tags on a DNS zone resource. Note that this command can not be used to create or update record sets within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/delete\",\r\n \"displayName\": \"Delete DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/MX\",\r\n \"displayName\": \"DNS MX RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/read\",\r\n \"displayName\": \"Get RecordSet MX\",\r\n \"description\": \"Get the record set of type ‘MX’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/write\",\r\n \"displayName\": \"Create or update RecordSet MX\",\r\n \"description\": \"Create or update a record set of type ‘MX’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/delete\",\r\n \"displayName\": \"Delete RecordSet MX\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/AAAA\",\r\n \"displayName\": \"DNS AAAA RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/read\",\r\n \"displayName\": \"Get RecordSet AAAA\",\r\n \"description\": \"Get the record set of type ‘AAAA’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/write\",\r\n \"displayName\": \"Create or update RecordSet AAAA\",\r\n \"description\": \"Create or update a record set of type ‘AAAA’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/delete\",\r\n \"displayName\": \"Delete RecordSet AAAA\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/SRV\",\r\n \"displayName\": \"DNS SRV RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/read\",\r\n \"displayName\": \"Get RecordSet SRV\",\r\n \"description\": \"Get the record set of type ‘SRV’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/write\",\r\n \"displayName\": \"Create or update a record set of type ‘SRV’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"description\": \"Create or update RecordSet SRV\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/delete\",\r\n \"displayName\": \"Delete RecordSet SRV\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/PTR\",\r\n \"displayName\": \"DNS PTR RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/read\",\r\n \"displayName\": \"Get RecordSet PTR\",\r\n \"description\": \"Get the record set of type ‘PTR’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/write\",\r\n \"displayName\": \"Create or update RecordSet PTR\",\r\n \"description\": \"Create or update a record set of type ‘PTR’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/delete\",\r\n \"displayName\": \"Delete RecordSet PTR\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/A\",\r\n \"displayName\": \"DNS A RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/read\",\r\n \"displayName\": \"Get RecordSet A\",\r\n \"description\": \"Get the record set of type ‘A’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/write\",\r\n \"displayName\": \"Create or update RecordSet A\",\r\n \"description\": \"Create or update a record set of type ‘A’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/delete\",\r\n \"displayName\": \"Delete RecordSet A\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/TXT\",\r\n \"displayName\": \"DNS TXT RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/read\",\r\n \"displayName\": \"Get RecordSet TXT\",\r\n \"description\": \"Get the record set of type ‘TXT’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/write\",\r\n \"displayName\": \"Create or update RecordSet TXT\",\r\n \"description\": \"Create or update a record set of type ‘TXT’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/delete\",\r\n \"displayName\": \"Delete RecordSet TXT\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces\",\r\n \"displayName\": \"Network Interface\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/read\",\r\n \"displayName\": \"Get Network Interface\",\r\n \"description\": \"Gets a network interface definition. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/write\",\r\n \"displayName\": \"Create or Update Network Interface\",\r\n \"description\": \"Creates a network interface or updates an existing network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"displayName\": \"Join Virtual Machine to a network interface\",\r\n \"description\": \"Joins a Virtual Machine to a network interface\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/delete\",\r\n \"displayName\": \"Delete Network Interface\",\r\n \"description\": \"Deletes a network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces/loadBalancers\",\r\n \"displayName\": \"Network Interface Load Balancers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"displayName\": \"Get Network Interface Load Balancers\",\r\n \"description\": \"Gets all the load balancers that the network interface is part of\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicIPAddresses\",\r\n \"displayName\": \"Public Ip Address\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/read\",\r\n \"displayName\": \"Get Public Ip Address\",\r\n \"description\": \"Gets a public ip address definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/write\",\r\n \"displayName\": \"Create or Update Public Ip Address\",\r\n \"description\": \"Creates a public Ip address or updates an existing public Ip address. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"displayName\": \"Delete Public Ip Address\",\r\n \"description\": \"Deletes a public Ip address.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"displayName\": \"Join Public Ip Address\",\r\n \"description\": \"Joins a public ip address\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Public IP Address Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Public IP Address Diagnostic Settings\",\r\n \"description\": \"Gets the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Public IP Address Diagnostic Settings\",\r\n \"description\": \"Creates or updates the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Public IP Address Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Public IP Address Event Log Definitions\",\r\n \"description\": \"Gets the events for Public IP Address\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"LoadBalancerAlertEvent\",\r\n \"displayName\": \"Load Balancer Alert Events\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"PublicIpProgrammingStatus\",\r\n \"displayName\": \"Public IP Programming Status\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers\",\r\n \"displayName\": \"Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/read\",\r\n \"displayName\": \"Get Load Balancer\",\r\n \"description\": \"Gets a load balancer definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/write\",\r\n \"displayName\": \"Create or Update Load Balancer\",\r\n \"description\": \"Creates a load balancer or updates an existing load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/delete\",\r\n \"displayName\": \"Delete Load Balancer\",\r\n \"description\": \"Deletes a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/networkInterfaces\",\r\n \"displayName\": \"Load Balancer Network Interfaces\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"displayName\": \"Get Load Balancer Network Interfaces\",\r\n \"description\": \"Gets references to all the network interfaces under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/loadBalancingRules\",\r\n \"displayName\": \"Load Balancer Load Balancing Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"displayName\": \"Get Load Balancer Load Balancing Rule\",\r\n \"description\": \"Gets a load balancer load balancing rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Load Balancing Rule\",\r\n \"description\": \"Creates a load balancer load balancing rule or updates an existing load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Load Balancing Rule\",\r\n \"description\": \"Deletes a load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/backendAddressPools\",\r\n \"displayName\": \"Load Balancer Backend Address Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Load Balancer Backend Address Pool\",\r\n \"description\": \"Joins a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"displayName\": \"Get Load Balancer Backend Address Pool\",\r\n \"description\": \"Gets a load balancer backend address pool definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"displayName\": \"Create or Update Load Balancer Backend Address Pool\",\r\n \"description\": \"Creates a load balancer backend address pool or updates an existing load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"displayName\": \"Delete Load Balancer Backend Address Pool\",\r\n \"description\": \"Deletes a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/inboundNatRules\",\r\n \"displayName\": \"Load Balancer Inbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"displayName\": \"Join Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Joins a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Gets a load balancer inbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Creates a load balancer inbound nat rule or updates an existing load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/outboundNatRules\",\r\n \"displayName\": \"Load Balancer Outbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Gets a load balancer outbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Creates a load balancer outbound nat rule or updates an existing load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/probes\",\r\n \"displayName\": \"Load Balancer Probe\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"displayName\": \"Get Load Balancer Probe\",\r\n \"description\": \"Gets a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/write\",\r\n \"displayName\": \"Create or Update Load Balancer Probe\",\r\n \"description\": \"Creates a load balancer probe or updates an existing load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/delete\",\r\n \"displayName\": \"Delete Load Balancer Probe\",\r\n \"description\": \"Deletes a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/virtualMachines\",\r\n \"displayName\": \"Load Balancer Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"displayName\": \"Get Load Balancer Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/write\",\r\n \"displayName\": \"Create or Update Virtual Network\",\r\n \"description\": \"Creates a virtual network or updates an existing virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network\",\r\n \"description\": \"Deletes a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets\",\r\n \"displayName\": \"Virtual Network Subnet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"displayName\": \"Join Virtual Network\",\r\n \"description\": \"Joins a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"displayName\": \"Get Virtual Network Subnet\",\r\n \"description\": \"Gets a virtual network subnet definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"displayName\": \"Create or Update Virtual Network Subnet\",\r\n \"description\": \"Creates a virtual network subnet or updates an existing virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"displayName\": \"Delete Virtual Network Subnet\",\r\n \"description\": \"Deletes a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets/virtualMachines\",\r\n \"displayName\": \"Virtual Network Subnet Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Subnet Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/virtualMachines\",\r\n \"displayName\": \"Virtual Network Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"trafficManagerProfiles\",\r\n \"displayName\": \"Traffic Manager Profile\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"displayName\": \"Get Traffic Manager Profile\",\r\n \"description\": \"Get the Traffic Manager profile configuration. This includes DNS settings, traffic routing settings, endpoint monitoring settings, and the list of endpoints routed by this Traffic Manager profile.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"displayName\": \"Create or Update Traffic Manager Profile\",\r\n \"description\": \"Create a Traffic Manager profile, or modify the configuration of an existing Traffic Manager profile. This includes enabling or disabling a profile and modifying DNS settings, traffic routing settings, or endpoint monitoring settings. Endpoints routed by the Traffic Manager profile can be added, removed, enabled or disabled.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/delete\",\r\n \"displayName\": \"Delete Traffic Manager Profile\",\r\n \"description\": \"Delete the Traffic Manager profile. All settings associated with the Traffic Manager profile will be lost, and the profile can no longer be used to route traffic.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups\",\r\n \"displayName\": \"Network Security Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"displayName\": \"Get Network Security Group\",\r\n \"description\": \"Gets a network security group definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"displayName\": \"Create or Update Network Security Group\",\r\n \"description\": \"Creates a network security group or updates an existing network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"displayName\": \"Delete Network Security Group\",\r\n \"description\": \"Deletes a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"displayName\": \"Join Network Security Group\",\r\n \"description\": \"Joins a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Network Security Groups Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Network Security Groups Diagnostic Settings\",\r\n \"description\": \"Gets the Network Security Groups Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Network Security Groups diagnostic settings\",\r\n \"description\": \"Creates or updates the Network Security Groups diagnostic settings, this operation is supplimented by insghts resource provider.\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Network Security Groups Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Network Security Group Event Log Definitions\",\r\n \"description\": \"Gets the events for network security group\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"NetworkSecurityGroupEvent\",\r\n \"displayName\": \"Network Security Group Event\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"NetworkSecurityGroupRuleCounter\",\r\n \"displayName\": \"Network Security Group Rule Counter\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/defaultSecurityRules\",\r\n \"displayName\": \"Default Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"displayName\": \"Get Default Security Rule\",\r\n \"description\": \"Gets a default security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/securityRules\",\r\n \"displayName\": \"Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"displayName\": \"Get Security Rule\",\r\n \"description\": \"Gets a security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"displayName\": \"Create or Update Security Rule\",\r\n \"description\": \"Creates a security rule or updates an existing security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"displayName\": \"Delete Security Rule\",\r\n \"description\": \"Deletes a security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/read\",\r\n \"displayName\": \"Get Application Gateway\",\r\n \"description\": \"Gets an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/write\",\r\n \"displayName\": \"Create or Update Application Gateway\",\r\n \"description\": \"Creates an application gateway or updates an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/delete\",\r\n \"displayName\": \"Delete Application Gateway\",\r\n \"description\": \"Deletes an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"ApplicationGateway Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \">Gets the logs for Application Gateway\",\r\n \"description\": \"Gets the events for Application Gateway\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ApplicationGatewayAccessLog\",\r\n \"displayName\": \"Application Gateway Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/backendAddressPools\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Application Gateway Backend Address Pool\",\r\n \"description\": \"Joins an application gateway backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables\",\r\n \"displayName\": \"Route Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/read\",\r\n \"displayName\": \"Get Route Table\",\r\n \"description\": \"Gets a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/write\",\r\n \"displayName\": \"Create or Update Route Table\",\r\n \"description\": \"Creates a route table or Updates an existing rotue table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/delete\",\r\n \"displayName\": \"Delete Route Table\",\r\n \"description\": \"Deletes a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/join/action\",\r\n \"displayName\": \"Join Route Table\",\r\n \"description\": \"Joins a route table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables/routes\",\r\n \"displayName\": \"Route\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/read\",\r\n \"displayName\": \"Get Route\",\r\n \"description\": \"Gets a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/write\",\r\n \"displayName\": \"Create or Update Route\",\r\n \"description\": \"Creates a route or Updates an existing route\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/delete\",\r\n \"displayName\": \"Delete Route\",\r\n \"description\": \"Deletes a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operationResults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operationResults/read\",\r\n \"displayName\": \"Get Operation Result\",\r\n \"description\": \"Gets operation result of an async POST or DELETE operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/checkDnsNameAvailability\",\r\n \"displayName\": \"Dns Availability Check Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/checkDnsNameAvailability/read\",\r\n \"displayName\": \"Check Dns Name Availability\",\r\n \"description\": \"Checks if dns label is available at the specified location\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operations\",\r\n \"displayName\": \"Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operations/read\",\r\n \"displayName\": \"Get Operation Resource\",\r\n \"description\": \"Gets operation resource that represents status of an asynchronous operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/usage\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/usage/read\",\r\n \"displayName\": \"Get Usage Metric\",\r\n \"description\": \"Gets the resources usage metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Network\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Network\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Cache\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"redis\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/write\",\r\n \"displayName\": \"Manage Redis Cache (read-write)\",\r\n \"description\": \"Modify the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/read\",\r\n \"displayName\": \"Manage Redis Cache (read-only)\",\r\n \"description\": \"View the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/delete\",\r\n \"displayName\": \"Delete Redis Cache\",\r\n \"description\": \"Delete the entire Redis Cache\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/listKeys/action\",\r\n \"displayName\": \"View Redis Cache Access Keys\",\r\n \"description\": \"View the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Redis Cache Access Keys\",\r\n \"description\": \"Change the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"redis/metricdefinitions\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/metricdefinitions/Read\",\r\n \"displayName\": \"Microsoft.Cache Metric Definitions\",\r\n \"description\": \"Gets the available metrics for microsoft.cache\",\r\n \"origin\": null,\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"connectedclients\",\r\n \"displayName\": \"Connected Clients\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed\",\r\n \"displayName\": \"Total Operations\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits\",\r\n \"displayName\": \"Cache Hits\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses\",\r\n \"displayName\": \"Cache Misses\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands\",\r\n \"displayName\": \"Gets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands\",\r\n \"displayName\": \"Sets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys\",\r\n \"displayName\": \"Evicted Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys\",\r\n \"displayName\": \"Total Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys\",\r\n \"displayName\": \"Expired Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory\",\r\n \"displayName\": \"Used Memory\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss\",\r\n \"displayName\": \"Used Memory RSS\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad\",\r\n \"displayName\": \"Server Load\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite\",\r\n \"displayName\": \"Cache Write\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead\",\r\n \"displayName\": \"Cache Read\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients0\",\r\n \"displayName\": \"Connected Clients (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed0\",\r\n \"displayName\": \"Total Operations (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits0\",\r\n \"displayName\": \"Cache Hits (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses0\",\r\n \"displayName\": \"Cache Misses (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands0\",\r\n \"displayName\": \"Gets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands0\",\r\n \"displayName\": \"Sets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys0\",\r\n \"displayName\": \"Evicted Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys0\",\r\n \"displayName\": \"Total Keys (Node 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys0\",\r\n \"displayName\": \"Expired Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory0\",\r\n \"displayName\": \"Used Memory (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss0\",\r\n \"displayName\": \"Used Memory RSS (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad0\",\r\n \"displayName\": \"Server Load (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite0\",\r\n \"displayName\": \"Cache Write (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead0\",\r\n \"displayName\": \"Cache Read (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime0\",\r\n \"displayName\": \"CPU (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients1\",\r\n \"displayName\": \"Connected Clients (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed1\",\r\n \"displayName\": \"Total Operations (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits1\",\r\n \"displayName\": \"Cache Hits (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses1\",\r\n \"displayName\": \"Cache Misses (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands1\",\r\n \"displayName\": \"Gets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands1\",\r\n \"displayName\": \"Sets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys1\",\r\n \"displayName\": \"Evicted Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys1\",\r\n \"displayName\": \"Total Keys (Node 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys1\",\r\n \"displayName\": \"Expired Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory1\",\r\n \"displayName\": \"Used Memory (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss1\",\r\n \"displayName\": \"Used Memory RSS (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad1\",\r\n \"displayName\": \"Server Load (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite1\",\r\n \"displayName\": \"Cache Write (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead1\",\r\n \"displayName\": \"Cache Read (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime1\",\r\n \"displayName\": \"CPU (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients2\",\r\n \"displayName\": \"Connected Clients (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed2\",\r\n \"displayName\": \"Total Operations (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits2\",\r\n \"displayName\": \"Cache Hits (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses2\",\r\n \"displayName\": \"Cache Misses (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands2\",\r\n \"displayName\": \"Gets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands2\",\r\n \"displayName\": \"Sets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys2\",\r\n \"displayName\": \"Evicted Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys2\",\r\n \"displayName\": \"Total Keys (Node 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys2\",\r\n \"displayName\": \"Expired Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory2\",\r\n \"displayName\": \"Used Memory (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss2\",\r\n \"displayName\": \"Used Memory RSS (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad2\",\r\n \"displayName\": \"Server Load (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite2\",\r\n \"displayName\": \"Cache Write (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead2\",\r\n \"displayName\": \"Cache Read (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime2\",\r\n \"displayName\": \"CPU (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients3\",\r\n \"displayName\": \"Connected Clients (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed3\",\r\n \"displayName\": \"Total Operations (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits3\",\r\n \"displayName\": \"Cache Hits (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses3\",\r\n \"displayName\": \"Cache Misses (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands3\",\r\n \"displayName\": \"Gets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands3\",\r\n \"displayName\": \"Sets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys3\",\r\n \"displayName\": \"Evicted Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys3\",\r\n \"displayName\": \"Total Keys (Node 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys3\",\r\n \"displayName\": \"Expired Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory3\",\r\n \"displayName\": \"Used Memory (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss3\",\r\n \"displayName\": \"Used Memory RSS (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad3\",\r\n \"displayName\": \"Server Load (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite3\",\r\n \"displayName\": \"Cache Write (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead3\",\r\n \"displayName\": \"Cache Read (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime3\",\r\n \"displayName\": \"CPU (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients4\",\r\n \"displayName\": \"Connected Clients (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed4\",\r\n \"displayName\": \"Total Operations (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits4\",\r\n \"displayName\": \"Cache Hits (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses4\",\r\n \"displayName\": \"Cache Misses (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands4\",\r\n \"displayName\": \"Gets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands4\",\r\n \"displayName\": \"Sets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys4\",\r\n \"displayName\": \"Evicted Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys4\",\r\n \"displayName\": \"Total Keys (Node 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys4\",\r\n \"displayName\": \"Expired Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory4\",\r\n \"displayName\": \"Used Memory (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss4\",\r\n \"displayName\": \"Used Memory RSS (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad4\",\r\n \"displayName\": \"Server Load (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite4\",\r\n \"displayName\": \"Cache Write (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead4\",\r\n \"displayName\": \"Cache Read (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime4\",\r\n \"displayName\": \"CPU (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients5\",\r\n \"displayName\": \"Connected Clients (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed5\",\r\n \"displayName\": \"Total Operations (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits5\",\r\n \"displayName\": \"Cache Hits (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses5\",\r\n \"displayName\": \"Cache Misses (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands5\",\r\n \"displayName\": \"Gets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands5\",\r\n \"displayName\": \"Sets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys5\",\r\n \"displayName\": \"Evicted Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys5\",\r\n \"displayName\": \"Total Keys (Node 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys5\",\r\n \"displayName\": \"Expired Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory5\",\r\n \"displayName\": \"Used Memory (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss5\",\r\n \"displayName\": \"Used Memory RSS (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad5\",\r\n \"displayName\": \"Server Load (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite5\",\r\n \"displayName\": \"Cache Write (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead5\",\r\n \"displayName\": \"Cache Read (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime5\",\r\n \"displayName\": \"CPU (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients6\",\r\n \"displayName\": \"Connected Clients (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed6\",\r\n \"displayName\": \"Total Operations (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits6\",\r\n \"displayName\": \"Cache Hits (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses6\",\r\n \"displayName\": \"Cache Misses (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands6\",\r\n \"displayName\": \"Gets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands6\",\r\n \"displayName\": \"Sets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys6\",\r\n \"displayName\": \"Evicted Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys6\",\r\n \"displayName\": \"Total Keys (Node 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys6\",\r\n \"displayName\": \"Expired Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory6\",\r\n \"displayName\": \"Used Memory (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss6\",\r\n \"displayName\": \"Used Memory RSS (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad6\",\r\n \"displayName\": \"Server Load (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite6\",\r\n \"displayName\": \"Cache Write (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead6\",\r\n \"displayName\": \"Cache Read (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime6\",\r\n \"displayName\": \"CPU (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients7\",\r\n \"displayName\": \"Connected Clients (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed7\",\r\n \"displayName\": \"Total Operations (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits7\",\r\n \"displayName\": \"Cache Hits (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses7\",\r\n \"displayName\": \"Cache Misses (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands7\",\r\n \"displayName\": \"Gets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands7\",\r\n \"displayName\": \"Sets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys7\",\r\n \"displayName\": \"Evicted Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys7\",\r\n \"displayName\": \"Total Keys (Node 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys7\",\r\n \"displayName\": \"Expired Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory7\",\r\n \"displayName\": \"Used Memory (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss7\",\r\n \"displayName\": \"Used Memory RSS (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad7\",\r\n \"displayName\": \"Server Load (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite7\",\r\n \"displayName\": \"Cache Write (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead7\",\r\n \"displayName\": \"Cache Read (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime7\",\r\n \"displayName\": \"CPU (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients8\",\r\n \"displayName\": \"Connected Clients (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed8\",\r\n \"displayName\": \"Total Operations (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits8\",\r\n \"displayName\": \"Cache Hits (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses8\",\r\n \"displayName\": \"Cache Misses (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands8\",\r\n \"displayName\": \"Gets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands8\",\r\n \"displayName\": \"Sets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys8\",\r\n \"displayName\": \"Evicted Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys8\",\r\n \"displayName\": \"Total Keys (Node 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys8\",\r\n \"displayName\": \"Expired Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory8\",\r\n \"displayName\": \"Used Memory (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss8\",\r\n \"displayName\": \"Used Memory RSS (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad8\",\r\n \"displayName\": \"Server Load (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite8\",\r\n \"displayName\": \"Cache Write (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead8\",\r\n \"displayName\": \"Cache Read (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime8\",\r\n \"displayName\": \"CPU (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients9\",\r\n \"displayName\": \"Connected Clients (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed9\",\r\n \"displayName\": \"Total Operations (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits9\",\r\n \"displayName\": \"Cache Hits (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses9\",\r\n \"displayName\": \"Cache Misses (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands9\",\r\n \"displayName\": \"Gets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands9\",\r\n \"displayName\": \"Sets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys9\",\r\n \"displayName\": \"Evicted Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys9\",\r\n \"displayName\": \"Total Keys (Node 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys9\",\r\n \"displayName\": \"Expired Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory9\",\r\n \"displayName\": \"Used Memory (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss9\",\r\n \"displayName\": \"Used Memory RSS (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad9\",\r\n \"displayName\": \"Server Load (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite9\",\r\n \"displayName\": \"Cache Write (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead9\",\r\n \"displayName\": \"Cache Read (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime9\",\r\n \"displayName\": \"CPU (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cache\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cache\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft.BingMaps\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/updateCommunicationPreference/action\",\r\n \"displayName\": \"Update Communication Preferences\",\r\n \"description\": \"Updates the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/listCommunicationPreference/action\",\r\n \"displayName\": \"List Communication Preferences\",\r\n \"description\": \"Gets the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"mapApis\",\r\n \"displayName\": \"mapApis\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Gets the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/write\",\r\n \"displayName\": \"Write\",\r\n \"description\": \"Updates the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Deletes the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Key\",\r\n \"description\": \"Regenerate key(s) for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/listSecrets/action\",\r\n \"displayName\": \"List Secrets\",\r\n \"description\": \"List the secrets for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BingMaps\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BingMaps\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/checkNameAvailability/action\",\r\n \"displayName\": \"Check Service Name Availability\",\r\n \"description\": \"Checks availability of the service name.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"metricDefinitions\",\r\n \"displayName\": \"The metric definitions for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/metricDefinitions/read\",\r\n \"displayName\": \"Read search service metric definitions\",\r\n \"description\": \"Gets the available metrics for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"Latency\",\r\n \"displayName\": \"Latency\",\r\n \"displayDescription\": \"Average latency for the search service\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"diagnosticSettings\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diganostic setting read for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/write\",\r\n \"displayName\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diganostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"logDefinitions\",\r\n \"displayName\": \"The log definition for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/logDefinitions/read\",\r\n \"displayName\": \"Read search service log definitions\",\r\n \"description\": \"Gets the available logs for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"OperationLogs\",\r\n \"displayName\": \"Operation Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/write\",\r\n \"displayName\": \"Set Search Service\",\r\n \"description\": \"Creates or updates the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/read\",\r\n \"displayName\": \"Get Search Service\",\r\n \"description\": \"Reads the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/delete\",\r\n \"displayName\": \"Delete Search Service\",\r\n \"description\": \"Deletes the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/start/action\",\r\n \"displayName\": \"Start Search Service\",\r\n \"description\": \"Starts the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/stop/action\",\r\n \"displayName\": \"Stop Search Service\",\r\n \"description\": \"Stops the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listAdminKeys/action\",\r\n \"displayName\": \"Get Admin Key\",\r\n \"description\": \"Reads the admin keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/regenerateAdminKey/action\",\r\n \"displayName\": \"Regenerate Admin Key\",\r\n \"description\": \"Regenerates the admin key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/action\",\r\n \"displayName\": \"Create Query Key\",\r\n \"description\": \"Creates the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/createQueryKey\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/delete\",\r\n \"displayName\": \"Delete Query Key\",\r\n \"description\": \"Deletes the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/listQueryKeys\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listQueryKeys/read\",\r\n \"displayName\": \"Get Query Key\",\r\n \"description\": \"Reads the query keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Search\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Search\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicStorage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/checkStorageAccountAvailability/action\",\r\n \"displayName\": \"Check Storage Account Availability\",\r\n \"description\": \"Checks for the availability of a storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"displayName\": \"Get The Storage Account\",\r\n \"description\": \"Return the storage account with the given account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/write\",\r\n \"displayName\": \"Add Storage Account\",\r\n \"description\": \"Adds a new storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Delete the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"displayName\": \"List Access Keys\",\r\n \"description\": \"Lists the access keys for the storage accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Access Keys\",\r\n \"description\": \"Regenerates the existing access keys for the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/delete\",\r\n \"displayName\": \"Delete Storage Account Image\",\r\n \"description\": \"Deletes a given storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/delete\",\r\n \"displayName\": \"Delete Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/read\",\r\n \"displayName\": \"Get Available Services\",\r\n \"description\": \"Get the available services.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicStorage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicStorage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Monitoring Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"AlertRules\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Write\",\r\n \"displayName\": \"Alert Rule write\",\r\n \"description\": \"Writing to an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Delete\",\r\n \"displayName\": \"Alert Rule delete\",\r\n \"description\": \"Deleting an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Read\",\r\n \"displayName\": \"Alert Rule read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"displayName\": \"Alert Rule activated\",\r\n \"description\": \"Alert Rule activated\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"displayName\": \"Alert Rule resolved\",\r\n \"description\": \"Alert Rule resolved\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AlertRules/Incidents\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"displayName\": \"Alert Rule Incidents read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/values\",\r\n \"displayName\": \"Events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"displayName\": \"Event types management values read\",\r\n \"description\": \"Read management event type values\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/digestevents\",\r\n \"displayName\": \"Digest events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/digestevents/Read\",\r\n \"displayName\": \"Event types management digest read\",\r\n \"description\": \"Read management event type digest\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AutoscaleSettings\",\r\n \"displayName\": \"Autoscale\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Write\",\r\n \"displayName\": \"Autoscale Setting write\",\r\n \"description\": \"Writing to an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Delete\",\r\n \"displayName\": \"Autoscale Setting delete\",\r\n \"description\": \"Deleting an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Read\",\r\n \"displayName\": \"Autoscale Setting read\",\r\n \"description\": \"Reading an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaleup/Action\",\r\n \"displayName\": \"Autoscale scale up operation\",\r\n \"description\": \"Autoscale scale up operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaledown/Action\",\r\n \"displayName\": \"Autoscale scale down operation\",\r\n \"description\": \"Autoscale scale down operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.insights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.insights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Operational Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"linkTargets\",\r\n \"displayName\": \"Unlinked Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/linkTargets/read\",\r\n \"displayName\": \"List Unlinked Accounts\",\r\n \"description\": \"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces\",\r\n \"displayName\": \"Workspace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"displayName\": \"Create Workspace\",\r\n \"description\": \"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"displayName\": \"Get Workspace\",\r\n \"description\": \"Gets an existing workspace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/delete\",\r\n \"displayName\": \"Delete Workspace\",\r\n \"description\": \"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action\",\r\n \"displayName\": \"Generates Registration Certificate for Workspace.\",\r\n \"description\": \"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"displayName\": \"List Workspace Shared Keys\",\r\n \"description\": \"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"displayName\": \"Search Workspace Data\",\r\n \"description\": \"Executes a search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/managementGroups\",\r\n \"displayName\": \"Management Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/managementGroups/read\",\r\n \"displayName\": \"Get Management Groups for Workspace\",\r\n \"description\": \"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/schema\",\r\n \"displayName\": \"Search Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/schema/read\",\r\n \"displayName\": \"Get Search Schema\",\r\n \"description\": \"Gets the search schema for the workspace. Search schema includes the exposed fields and their types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/usages\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/usages/read\",\r\n \"displayName\": \"Get Usage Data for Workspace\",\r\n \"description\": \"Gets usage data for a workspace including the amount of data read by the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/savedSearches\",\r\n \"displayName\": \"Saved Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"displayName\": \"Get Saved Search\",\r\n \"description\": \"Gets a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/write\",\r\n \"displayName\": \"Create Saved Search\",\r\n \"description\": \"Creates a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/delete\",\r\n \"displayName\": \"Delete Saved Search\",\r\n \"description\": \"Deletes a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/storageinsightconfigs\",\r\n \"displayName\": \"Storage Insight Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write\",\r\n \"displayName\": \"Create Storage Configuration\",\r\n \"description\": \"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read\",\r\n \"displayName\": \"Get Storage Configuration\",\r\n \"description\": \"Gets a storage configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete\",\r\n \"displayName\": \"Delete Storage Configuration\",\r\n \"description\": \"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.OperationalInsights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.OperationalInsights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure Notification Hub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/CheckNamespaceAvailability/action\",\r\n \"displayName\": \"Check Namespace name availability.\",\r\n \"description\": \"Checks whether or not a given Namespace resource name is available within the NotificationHub service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"Namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/CheckNotificationHubAvailability/action\",\r\n \"displayName\": \"Check NotificationHub name availability.\",\r\n \"description\": \"Checks whether or not a given NotificationHub name is available inside a Namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/write\",\r\n \"displayName\": \"Create or Update Notification Hub \",\r\n \"description\": \"Create a Notification Hub and Update its properties. Its properties mainly include PNS Credentials. Authorization Rules and TTL\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/read\",\r\n \"displayName\": \"Get Notification Hub\",\r\n \"description\": \"Get list of Notification Hub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/Delete\",\r\n \"displayName\": \"Delete Notification Hub\",\r\n \"description\": \"Delete Notification Hub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/action\",\r\n \"displayName\": \"Get Notification Hub Authorization Rules\",\r\n \"description\": \"Get the list of Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/pnsCredentials/action\",\r\n \"displayName\": \"Get Notification Hub PNS Credentials\",\r\n \"description\": \"Get All Notification Hub PNS Credentials. This includes, WNS, MPNS, APNS, GCM and Baidu credentials\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs/authorizationRules\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Notification hub Authorization Rule\",\r\n \"description\": \"Create Notification Hub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete Notification Hub Authorization Rules\",\r\n \"description\": \"Delete Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Notification Hub Listkeys\",\r\n \"description\": \"Get the Connection String to the Notification Hub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.NotificationHubs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.NotificationHubs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Scheduler\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"jobcollections\",\r\n \"displayName\": \"Job Collection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/read\",\r\n \"displayName\": \"Get Job Collection\",\r\n \"description\": \"Get Job Collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/write\",\r\n \"displayName\": \"Create Job Collection\",\r\n \"description\": \"Creates or updates job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/delete\",\r\n \"displayName\": \"Delete Job Collection\",\r\n \"description\": \"Deletes job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/enable/action\",\r\n \"displayName\": \"Enable Job Collection\",\r\n \"description\": \"Enables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/disable/action\",\r\n \"displayName\": \"Disable Job Collection\",\r\n \"description\": \"Disables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs\",\r\n \"displayName\": \"Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/read\",\r\n \"displayName\": \"Get Job\",\r\n \"description\": \"Gets job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/write\",\r\n \"displayName\": \"Create Job\",\r\n \"description\": \"Creates or updates job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/delete\",\r\n \"displayName\": \"Delete Job\",\r\n \"description\": \"Deletes job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/run/action\",\r\n \"displayName\": \"Run Job\",\r\n \"description\": \"Runs job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs/jobhistories\",\r\n \"displayName\": \"Job History\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/jobhistories/read\",\r\n \"displayName\": \"Get Job History\",\r\n \"description\": \"Gets job history.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Scheduler\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Scheduler\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Data Factory\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"datafactories\",\r\n \"displayName\": \"Data Factory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/read\",\r\n \"displayName\": \"Read Data Factory\",\r\n \"description\": \"Reads Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/write\",\r\n \"displayName\": \"Create or Update any Data Factory.\",\r\n \"description\": \"Create or Update Data Factory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/delete\",\r\n \"displayName\": \"Delete Data Factory\",\r\n \"description\": \"Deletes Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/datapipelines\",\r\n \"displayName\": \"Pipeline\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/read\",\r\n \"displayName\": \"Read Pipeline\",\r\n \"description\": \"Reads Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/delete\",\r\n \"displayName\": \"Delete Pipeline\",\r\n \"description\": \"Deletes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/pause/action\",\r\n \"displayName\": \"Puase Pipeline\",\r\n \"description\": \"Pauses Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/resume/action\",\r\n \"displayName\": \"Resume Pipeline\",\r\n \"description\": \"Resumes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/update/action\",\r\n \"displayName\": \"Update Pipeline\",\r\n \"description\": \"Updates Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/write\",\r\n \"displayName\": \"Create or Update any Pipeline.\",\r\n \"description\": \"Create or Update Pipeline\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/linkedServices\",\r\n \"displayName\": \"Linked service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/read\",\r\n \"displayName\": \"Read Linked service\",\r\n \"description\": \"Reads Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/delete\",\r\n \"displayName\": \"Delete Linked service\",\r\n \"description\": \"Deletes Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/write\",\r\n \"displayName\": \"Create or Update any Linked service.\",\r\n \"description\": \"Create or Update Linked service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/{resourceTypeName:regex(^(tables|datasets)$)}\",\r\n \"displayName\": \"Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/read\",\r\n \"displayName\": \"Read Table\",\r\n \"description\": \"Reads Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/delete\",\r\n \"displayName\": \"Delete Table\",\r\n \"description\": \"Deletes Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/write\",\r\n \"displayName\": \"Create or Update any Table.\",\r\n \"description\": \"Create or Update Table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataFactory\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataFactory\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Web Apps\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"sites\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/Read\",\r\n \"displayName\": \"Get Web Apps\",\r\n \"description\": \"Get the list of Web Apps.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Write\",\r\n \"displayName\": \"Create or Update Web App\",\r\n \"description\": \"Create a new Web App or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Delete\",\r\n \"displayName\": \"Delete Web App\",\r\n \"description\": \"Delete an existing Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App\",\r\n \"description\": \"List publishing profile xml for Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/restart/Action\",\r\n \"displayName\": \"Restart Web App\",\r\n \"description\": \"Restart Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/start/Action\",\r\n \"displayName\": \"Start Web App\",\r\n \"description\": \"Start Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/stop/Action\",\r\n \"displayName\": \"Stop Web App\",\r\n \"description\": \"Stop Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App with a slot\",\r\n \"description\": \"Swap Web App with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/Write\",\r\n \"displayName\": \"Create Web App Backup\",\r\n \"description\": \"Create new web app backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup/config\",\r\n \"displayName\": \"Web App Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Read\",\r\n \"displayName\": \"List Web App Backup Configurations\",\r\n \"description\": \"List all Web App backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Write\",\r\n \"displayName\": \"Update Web App Backup Configuration\",\r\n \"description\": \"Update Web App backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slotsdiffs\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Write\",\r\n \"displayName\": \"Create or Update Web App Slot\",\r\n \"description\": \"Create a new Web App Slot or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Delete\",\r\n \"displayName\": \"Delete Web App Slot\",\r\n \"description\": \"Delete an existing Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App Slot\",\r\n \"description\": \"List publishing profile xml for Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"displayName\": \"Restart Web App Slot\",\r\n \"description\": \"Restart Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/start/Action\",\r\n \"displayName\": \"Start Web App Slot\",\r\n \"description\": \"Start Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"displayName\": \"Stop Web App Slot\",\r\n \"description\": \"Stop Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App Slot with another slot\",\r\n \"description\": \"Swap Web App Slot with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Action\",\r\n \"displayName\": \"List Web App Slot Backup Configurations\",\r\n \"description\": \"List all Web App Slot backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/Write\",\r\n \"displayName\": \"Create Web App Slot Backup\",\r\n \"description\": \"Create new Web App Slot backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup/config\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Write\",\r\n \"displayName\": \"Update Web App Slot Backup Configuration\",\r\n \"description\": \"Update Web App Slot backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/slotsdiffs\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/appsettings\",\r\n \"displayName\": \"Web App Slot AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's AppSettings\",\r\n \"description\": \"Get Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App Slot's AppSettings\",\r\n \"description\": \"Update Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/logs\",\r\n \"displayName\": \"Web App Slot Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Read\",\r\n \"displayName\": \"Get Web App Slot's Logs Config\",\r\n \"description\": \"Get Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Write\",\r\n \"displayName\": \"Update Web App Slot's Logs Config\",\r\n \"description\": \"Update Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/publishingcredentials\",\r\n \"displayName\": \"Web App Slot Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App Slot's publishing credentials\",\r\n \"description\": \"List Web App Slot's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/connectionstrings\",\r\n \"displayName\": \"Web App Slot Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's connection strings\",\r\n \"description\": \"Get Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App Slot's connection strings\",\r\n \"description\": \"Update Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/web\",\r\n \"displayName\": \"Web App Slot Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Read\",\r\n \"displayName\": \"Get Web App Slot's configuration\",\r\n \"description\": \"Get Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Write\",\r\n \"displayName\": \"Update Web App Slot's configuration\",\r\n \"description\": \"Update Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/metadata\",\r\n \"displayName\": \"Web App Slot Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App Slot's metadata\",\r\n \"description\": \"List Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/Write\",\r\n \"displayName\": \"Update Web App Slot's metadata\",\r\n \"description\": \"Update Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/sourcecontrols/web\",\r\n \"displayName\": \"Web App Slot Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App Slot's source control configuration\",\r\n \"description\": \"Get Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App Slot's source control configuration\",\r\n \"description\": \"Update Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App Slot's source control configuration\",\r\n \"description\": \"Delete Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/restore\",\r\n \"displayName\": \"Web App Slot Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restore/Read\",\r\n \"displayName\": \"List Web App Slot Backups\",\r\n \"description\": \"List all backups for a Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/appsettings\",\r\n \"displayName\": \"Web App AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App's AppSettings\",\r\n \"description\": \"Get Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App's AppSettings\",\r\n \"description\": \"Update Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/logs\",\r\n \"displayName\": \"Web App Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Read\",\r\n \"displayName\": \"Get Web App's Logs Config\",\r\n \"description\": \"Get Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Write\",\r\n \"displayName\": \"Update Web App's Logs Config\",\r\n \"description\": \"Update Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/publishingcredentials\",\r\n \"displayName\": \"Web App Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App's publishing credentials\",\r\n \"description\": \"List Web App's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/connectionstrings\",\r\n \"displayName\": \"Web App Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App's connection strings\",\r\n \"description\": \"Get Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App's connection strings\",\r\n \"description\": \"Update Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/web\",\r\n \"displayName\": \"Web App Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Read\",\r\n \"displayName\": \"Get Web App's configuration\",\r\n \"description\": \"Get Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Write\",\r\n \"displayName\": \"Update Web App's configuration\",\r\n \"description\": \"Update Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/metadata\",\r\n \"displayName\": \"Web App Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App's metadata\",\r\n \"description\": \"List Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/Write\",\r\n \"displayName\": \"Update Web App's metadata\",\r\n \"description\": \"Update Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/sourcecontrols/web\",\r\n \"displayName\": \"Web App Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App's source control configuration\",\r\n \"description\": \"Get Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App's source control configuration\",\r\n \"description\": \"Update Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App's source control configuration\",\r\n \"description\": \"Delete Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/restore\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/restore/Read\",\r\n \"displayName\": \"List Web App Backups\",\r\n \"description\": \"List all backups for a Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverfarms\",\r\n \"displayName\": \"App Service Plan\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Read\",\r\n \"displayName\": \"Get App Service Plans\",\r\n \"description\": \"Get the list of App Service Plans.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Write\",\r\n \"displayName\": \"Create or Update App Service Plans\",\r\n \"description\": \"Create a new App Service Plan or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Delete\",\r\n \"displayName\": \"Delete App Service Plan\",\r\n \"description\": \"Delete an existing App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/restartSites/Action\",\r\n \"displayName\": \"Restart Web Apps\",\r\n \"description\": \"Restart Web Apps in an App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Read\",\r\n \"displayName\": \"Get Certificates\",\r\n \"description\": \"Get the list of certificates.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Write\",\r\n \"displayName\": \"Add or Update Certificate\",\r\n \"description\": \"Add a new certificate or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Delete\",\r\n \"displayName\": \"Delete Certificate\",\r\n \"description\": \"Delete an existing certificate.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Web\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Web\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"vaults\",\r\n \"displayName\": \"Key Vault\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/read\",\r\n \"displayName\": \"View Key Vault\",\r\n \"description\": \"View the properties of a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/write\",\r\n \"displayName\": \"Update Key Vault\",\r\n \"description\": \"Create a new key vault or update the properties of an existing key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/delete\",\r\n \"displayName\": \"Delete Key Vault\",\r\n \"description\": \"Delete a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"displayName\": \"Use Vault for Virtual Machines\",\r\n \"description\": \"Enables access to secrets in a key vault when deploying a virtual machine\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Key Vault Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Read\",\r\n \"displayName\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Write\",\r\n \"displayName\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Key Vault Log Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Read log definition\",\r\n \"description\": \"Gets the available logs for Key Vault\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AuditEvent\",\r\n \"displayName\": \"Audit Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/secrets\",\r\n \"displayName\": \"Secret\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"displayName\": \"View Secret Properties\",\r\n \"description\": \"View the properties of a secret, but not its value\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"displayName\": \"Update Secret\",\r\n \"description\": \"Create a new secret or update the value of an existing secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/delete\",\r\n \"displayName\": \"Delete Secret\",\r\n \"description\": \"Delete a secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.KeyVault\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.KeyVault\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft AppService\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"appidentities\",\r\n \"displayName\": \"App Identity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Read\",\r\n \"displayName\": \"Get App Identity\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Write\",\r\n \"displayName\": \"Create App Identity\",\r\n \"description\": \"Creates a new App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Delete\",\r\n \"displayName\": \"Delete App Identity\",\r\n \"description\": \"Deletes an existing App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deploymenttemplates\",\r\n \"displayName\": \"Deployment Template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/listMetadata/Action\",\r\n \"displayName\": \"List UI Metadata\",\r\n \"description\": \"Lists UI Metadata associated with the API App package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/generate/Action\",\r\n \"displayName\": \"Generate Deployment Template\",\r\n \"description\": \"Returns a Deployment Template to provision API App instance(s).\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways\",\r\n \"displayName\": \"Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Read\",\r\n \"displayName\": \"Get Gateway\",\r\n \"description\": \"Returns the Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Write\",\r\n \"displayName\": \"Create or Update Gateway\",\r\n \"description\": \"Creates a new Gateway or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Delete\",\r\n \"displayName\": \"Delete Gateway\",\r\n \"description\": \"Deletes an existing Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listLoginUris/Action\",\r\n \"displayName\": \"List Login URIs\",\r\n \"description\": \"Populates token store and returns OAuth login URIs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listKeys/Action\",\r\n \"displayName\": \"List Gateway Secrets\",\r\n \"description\": \"Returns Gateway secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/tokens\",\r\n \"displayName\": \"Zumo Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/tokens/Write\",\r\n \"displayName\": \"Create Zumo Token\",\r\n \"description\": \"Creates a new Zumo Token with the given name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/registrations\",\r\n \"displayName\": \"Gateway Registration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Read\",\r\n \"displayName\": \"Get Registered Resource\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Write\",\r\n \"displayName\": \"Register Resource\",\r\n \"description\": \"Registers a resource (web site) with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Delete\",\r\n \"displayName\": \"Unregister Resource\",\r\n \"description\": \"Unregisters a resource (web site) from the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps\",\r\n \"displayName\": \"API App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Read\",\r\n \"displayName\": \"Get API App\",\r\n \"description\": \"Returns the API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Write\",\r\n \"displayName\": \"Create or Update API App\",\r\n \"description\": \"Creates a new API App or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Delete\",\r\n \"displayName\": \"Delete API App\",\r\n \"description\": \"Deletes an existing API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listStatus/Action\",\r\n \"displayName\": \"Get API App Status\",\r\n \"description\": \"Returns API App status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listKeys/Action\",\r\n \"displayName\": \"List API App Secrets\",\r\n \"description\": \"Returns API App secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps/apidefinitions\",\r\n \"displayName\": \"API Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/apidefinitions/Read\",\r\n \"displayName\": \"Get API App's API Definition\",\r\n \"description\": \"Returns API App's API definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.AppService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.AppService\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DevTest Labs\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"labs\",\r\n \"displayName\": \"DevTest Labs\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/read\",\r\n \"displayName\": \"Read DevTest Labs.\",\r\n \"description\": \"Read DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/write\",\r\n \"displayName\": \"Add or modify DevTest Labs.\",\r\n \"description\": \"Add or modify DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/delete\",\r\n \"displayName\": \"Delete DevTest Labs.\",\r\n \"description\": \"Delete DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"displayName\": \"Create an environment.\",\r\n \"description\": \"Create virtual machines or environments in a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/listVhds/action\",\r\n \"displayName\": \"List VHDs.\",\r\n \"description\": \"List disk images available for VM template creation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/labStats/action\",\r\n \"displayName\": \"Get Lab Status\",\r\n \"description\": \"Get the number of environments and the limit of environments for the lab. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/getUploadUri/action\",\r\n \"displayName\": \"Get Image Upload URI.\",\r\n \"description\": \"Get a URI for uploading custom disk images to a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/artifactSources\",\r\n \"displayName\": \"Artifact Sources\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/read\",\r\n \"displayName\": \"Read Artifact Sources.\",\r\n \"description\": \"Read Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/write\",\r\n \"displayName\": \"Add or modify Artifact Sources.\",\r\n \"description\": \"Add or modify Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/delete\",\r\n \"displayName\": \"Delete Artifact Sources.\",\r\n \"description\": \"Delete Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/policies\",\r\n \"displayName\": \"Policies\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/read\",\r\n \"displayName\": \"Read Policies.\",\r\n \"description\": \"Read Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/write\",\r\n \"displayName\": \"Add or modify Policies.\",\r\n \"description\": \"Add or modify Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/delete\",\r\n \"displayName\": \"Delete Policies.\",\r\n \"description\": \"Delete Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/vmtemplates\",\r\n \"displayName\": \"VM Templates\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/read\",\r\n \"displayName\": \"Read VM Templates.\",\r\n \"description\": \"Read VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/write\",\r\n \"displayName\": \"Add or modify VM Templates.\",\r\n \"description\": \"Add or modify VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/delete\",\r\n \"displayName\": \"Delete VM Templates.\",\r\n \"description\": \"Delete VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"environments\",\r\n \"displayName\": \"Environments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/read\",\r\n \"displayName\": \"Read Environments.\",\r\n \"description\": \"Read Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/write\",\r\n \"displayName\": \"Add or modify Environments.\",\r\n \"description\": \"Add or modify Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/delete\",\r\n \"displayName\": \"Delete Environments.\",\r\n \"description\": \"Delete Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DevTestLab\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DevTestLab\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"displayName\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"displayName\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"displayName\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"displayName\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventHubs/consumergroups\",\r\n \"displayName\": \"ConsumerGroup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"displayName\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"displayName\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"displayName\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs/authorizationRules\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get EventHub Listkeys\",\r\n \"description\": \"Get the Connection String to EventHub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.EventHub\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.EventHub\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services (LCS)\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"lcsprojects\",\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services project\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/read\",\r\n \"displayName\": \"Read LCS projects\",\r\n \"description\": \"Display Microsoft Dynamics Lifecycle Services projects that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/write\",\r\n \"displayName\": \"Create and update LCS projects\",\r\n \"description\": \"Create and update Microsoft Dynamics Lifecycle Services projects that belong to the user. Only the name and description properties can be updated. The subscription and location associated with the project cannot be updated after creation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/delete\",\r\n \"displayName\": \"Delete LCS projects\",\r\n \"description\": \"Delete Microsoft Dynamics Lifecycle Services projects that belong to the user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"lcsprojects/clouddeployments\",\r\n \"displayName\": \"Microsoft Dynamics AX 2012 deployments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/read\",\r\n \"displayName\": \"Read Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Display Microsoft Dynamics AX 2012 R3 Evaluation deployments in a Microsoft Dynamics Lifecycle Services project that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/write\",\r\n \"displayName\": \"Create Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Create Microsoft Dynamics AX 2012 R3 Evaluation deployment in a Microsoft Dynamics Lifecycle Services project that belong to a user. Deployments can be managed from Azure management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DynamicsLcs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DynamicsLcs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Resources\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"marketplace\",\r\n \"displayName\": \"Marketplace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/marketplace/purchase/action\",\r\n \"displayName\": \"Purchase Resource\",\r\n \"description\": \"Purchases a resource from the marketplace.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions\",\r\n \"displayName\": \"Subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/read\",\r\n \"displayName\": \"Get Subscriptions\",\r\n \"description\": \"Gets the list of subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/providers\",\r\n \"displayName\": \"Resource Providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"displayName\": \"Get Resource Providers\",\r\n \"description\": \"Gets or lists resource providers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames\",\r\n \"displayName\": \"Subscription Tag\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/read\",\r\n \"displayName\": \"Get Subscription Tag\",\r\n \"description\": \"Gets or lists subscription tags.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/write\",\r\n \"displayName\": \"Add Subscription Tag\",\r\n \"description\": \"Adds a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/delete\",\r\n \"displayName\": \"Delete Subscription Tag\",\r\n \"description\": \"Deletes a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames/tagValues\",\r\n \"displayName\": \"Subscription Tag Value\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/read\",\r\n \"displayName\": \"Get Subscription Tag Value\",\r\n \"description\": \"Gets or lists subscription tag values.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/write\",\r\n \"displayName\": \"Add Subscription Tag Value\",\r\n \"description\": \"Adds a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/delete\",\r\n \"displayName\": \"Delete Subscription Tag Value\",\r\n \"description\": \"Deletes a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resources\",\r\n \"displayName\": \"Subscription Resource\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"displayName\": \"Get Subscription Resources\",\r\n \"description\": \"Gets resources of a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resourceGroups\",\r\n \"displayName\": \"Resource Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"displayName\": \"Get Resource Group\",\r\n \"description\": \"Gets or lists resource groups.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"displayName\": \"Create Resource Group\",\r\n \"description\": \"Creates or updates a resource group.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"displayName\": \"Delete Resource Group\",\r\n \"description\": \"Deletes a resource group and all its resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"displayName\": \"Move Resource Group Resources\",\r\n \"description\": \"Moves resources from one resource group to another.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/locations\",\r\n \"displayName\": \"Location\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/locations/read\",\r\n \"displayName\": \"Get Locations\",\r\n \"description\": \"Gets the list of locations supported.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"links\",\r\n \"displayName\": \"Resource Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/links/read\",\r\n \"displayName\": \"Get Resource Link\",\r\n \"description\": \"Gets or lists resource links.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/write\",\r\n \"displayName\": \"Create Resource Link\",\r\n \"description\": \"Creates or updates a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/delete\",\r\n \"displayName\": \"Delete Resource Link\",\r\n \"description\": \"Deletes a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"tenants\",\r\n \"displayName\": \"Tenant\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/tenants/read\",\r\n \"displayName\": \"Get Tenants\",\r\n \"description\": \"Gets the list of tenants.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments\",\r\n \"displayName\": \"Deployment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/read\",\r\n \"displayName\": \"Get Deployment\",\r\n \"description\": \"Gets or lists deployments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/write\",\r\n \"displayName\": \"Create Deployment\",\r\n \"description\": \"Creates or updates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/delete\",\r\n \"displayName\": \"Delete Deployment\",\r\n \"description\": \"Deletes a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/cancel/action\",\r\n \"displayName\": \"Cancel Deployment\",\r\n \"description\": \"Cancels a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/validate/action\",\r\n \"displayName\": \"Validate Deployment\",\r\n \"description\": \"Validates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments/operations\",\r\n \"displayName\": \"Deployment Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/operations/read\",\r\n \"displayName\": \"Get Deployment Operation\",\r\n \"description\": \"Gets or lists deployment operations.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Resources\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Resources\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Support\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"supportTickets\",\r\n \"displayName\": \"Support Ticket\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/read\",\r\n \"displayName\": \"Reads Support Ticket\",\r\n \"description\": \"Gets Support Ticket details (including status, severity, contact details and communications) or gets the list of Support Tickets across subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/write\",\r\n \"displayName\": \"Writes Support Ticket\",\r\n \"description\": \"Creates or Updates a Support Ticket. You can create a Support Ticket for Technical, Billing, Quotas or Subscription Management related issues. You can update severity, contact details and communications for existing support tickets.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.support\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.support\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Logic\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"workflows\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"displayName\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"displayName\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"displayName\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"displayName\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"displayName\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"displayName\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"displayName\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"displayName\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunRate\",\r\n \"displayName\": \"Run Rate\",\r\n \"displayDescription\": \"Rate of workflow run.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessPercentage\",\r\n \"displayName\": \"Run Success Percentage\",\r\n \"displayDescription\": \"Percentage of succeeded workflow runs over completed workflow runs.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/versions\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"displayName\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs\",\r\n \"displayName\": \"Workflow Run\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"displayName\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"displayName\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/actions\",\r\n \"displayName\": \"Workflow Run Action\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"displayName\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/operations\",\r\n \"displayName\": \"Workflow Run Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"displayName\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers\",\r\n \"displayName\": \"Trigger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"displayName\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"displayName\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Trigger Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Trigger Metric Definition\",\r\n \"description\": \"Reads workflow trigger metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerRate\",\r\n \"displayName\": \"Trigger Rate \",\r\n \"displayDescription\": \"Rate of workflow trigger.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessPercentage\",\r\n \"displayName\": \"Trigger Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow triggers over completed workflow trigger.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSkipPercentage\",\r\n \"displayName\": \"Trigger Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFirePercentage\",\r\n \"displayName\": \"Trigger Fire Percentage \",\r\n \"displayDescription\": \"Percentage of fired workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Trigger Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Reads the workflow trigger diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow trigger diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/histories\",\r\n \"displayName\": \"Trigger Histories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"displayName\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/accessKeys\",\r\n \"displayName\": \"Access Key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"displayName\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"displayName\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"displayName\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"displayName\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"displayName\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Action Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Action Metric Definition\",\r\n \"description\": \"Reads workflow action metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionRate\",\r\n \"displayName\": \"Action Rate\",\r\n \"displayDescription\": \"Rate of workflow action.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessPercentage\",\r\n \"displayName\": \"Action Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSkipPercentage\",\r\n \"displayName\": \"Action Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Action Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Action Diagnostic Setting\",\r\n \"description\": \"Reads the workflow action diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Action Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow action diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Logic\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Logic\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicNetwork\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"gatewaySupportedDevices\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/gatewaySupportedDevices/read\",\r\n \"displayName\": \"List Supported Devices\",\r\n \"description\": \"Retrieves the list of supported devices.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps\",\r\n \"displayName\": \"Reserved Ip\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"displayName\": \"Get Reserved Ips\",\r\n \"description\": \"Gets the reserved Ips\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/write\",\r\n \"displayName\": \"Add Reserved Ip\",\r\n \"description\": \"Add a new reserved Ip\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/delete\",\r\n \"displayName\": \"Delete Reserved Ip\",\r\n \"description\": \"Delete a reserved Ip.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/write\",\r\n \"displayName\": \"Add Virtual Network\",\r\n \"description\": \"Add a new virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network.\",\r\n \"description\": \"Deletes the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/checkIPAddressAvailability/action\",\r\n \"displayName\": \"Availability of an IP address in a given virtual network.\",\r\n \"description\": \"Checks the availability of a given IP address in a virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/read\",\r\n \"displayName\": \"Get Virtual Network Gateways\",\r\n \"description\": \"Gets the virtual network gateways.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/write\",\r\n \"displayName\": \"Add Virtual Network Gateway\",\r\n \"description\": \"Adds a virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/delete\",\r\n \"displayName\": \"Delete Virtual Network Gateway\",\r\n \"description\": \"Deletes the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/startDiagnostics/action\",\r\n \"displayName\": \"Start Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Starts diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/stopDiagnostics/action\",\r\n \"displayName\": \"Stop Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Stops the diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDiagnostics/action\",\r\n \"displayName\": \"Download Gateway Diagnostics\",\r\n \"description\": \"Downloads the gateway diagnostics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listCircuitServiceKey/action\",\r\n \"displayName\": \"Get Circuit Service Key\",\r\n \"description\": \"Retrieves the circuit service key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDeviceConfigurationScript/action\",\r\n \"displayName\": \"Download Configuration Script\",\r\n \"description\": \"Downloads the device configuration script.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listPackage/action\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/packages\",\r\n \"displayName\": \"Virtual Network Gateway Package\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/packages/read\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Gets the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/connections\",\r\n \"displayName\": \"Gateway Connection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/read\",\r\n \"displayName\": \"Get Conection List\",\r\n \"description\": \"Retrieves the list of connections.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/connect/action\",\r\n \"displayName\": \"Connect Gateway Connection\",\r\n \"description\": \"Connects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/disconnect/action\",\r\n \"displayName\": \"Disconnect Gateway Connection\",\r\n \"description\": \"Disconnects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/test/action\",\r\n \"displayName\": \"Test Gateway Connection\",\r\n \"description\": \"Tests a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRevokedCertificates\",\r\n \"displayName\": \"Geteway Client Revoked Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/read\",\r\n \"displayName\": \"Get Revoked Certificates.\",\r\n \"description\": \"Read the revoked client certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/write\",\r\n \"displayName\": \"Revoke Client Certificate\",\r\n \"description\": \"Revokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/delete\",\r\n \"displayName\": \"Unrevoke Client Certificate.\",\r\n \"description\": \"Unrevokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRootCertificates\",\r\n \"displayName\": \"Geteway Client Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/read\",\r\n \"displayName\": \"Get Client Root Certificates.\",\r\n \"description\": \"Find the client root certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/write\",\r\n \"displayName\": \"Upload Client Root Certificate\",\r\n \"description\": \"Uploads a new client root certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/delete\",\r\n \"displayName\": \"Delete Client Root Certificate.\",\r\n \"description\": \"Deletes the virtual network gateway client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/download/action\",\r\n \"displayName\": \"Downloads Certificate\",\r\n \"description\": \"Downloads certificate by thumbprint.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/listPackage/action\",\r\n \"displayName\": \"List Virtual Network Gateway\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicNetwork\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicNetwork\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Marketplace Ordering\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"agreements/offers/plans\",\r\n \"displayName\": \"Agreement\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/read\",\r\n \"displayName\": \"Get Agreement\",\r\n \"description\": \"Return an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/sign/action\",\r\n \"displayName\": \"Sign Agreement\",\r\n \"description\": \"Sign an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/cancel/action\",\r\n \"displayName\": \"Cancel Agreement\",\r\n \"description\": \"Cancel an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.MarketplaceOrdering\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.MarketplaceOrdering\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ADHybridHealthService\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/action\",\r\n \"displayName\": \"Updates Tenant Configuration\",\r\n \"description\": \"Updates Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/action\",\r\n \"displayName\": \"Updates a service\",\r\n \"description\": \"Updates a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"configuration\",\r\n \"displayName\": \"Tenant Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/write\",\r\n \"displayName\": \"Creates a new Tenant\",\r\n \"description\": \"Creates a Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"displayName\": \"Reads Tenant Configuration\",\r\n \"description\": \"Reads the Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/write\",\r\n \"displayName\": \"Creates a service\",\r\n \"description\": \"Creates a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/read\",\r\n \"displayName\": \"Reads services\",\r\n \"description\": \"Reads the service instances in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/delete\",\r\n \"displayName\": \"Deletes service\",\r\n \"description\": \"Deletes a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/action\",\r\n \"displayName\": \"Creates a service member\",\r\n \"description\": \"Creates a service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/servicemembers\",\r\n \"displayName\": \"Service Member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"displayName\": \"Reads a service member\",\r\n \"description\": \"Reads the service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/delete\",\r\n \"displayName\": \"Deletes service member\",\r\n \"description\": \"Deletes a service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/servicemembers/alerts\",\r\n \"displayName\": \"Alert\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"displayName\": \"Reads the service member alerts\",\r\n \"description\": \"Reads the alerts for a service member.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/alerts\",\r\n \"displayName\": \"Alert\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"displayName\": \"Reads the service alerts\",\r\n \"description\": \"Reads the alerts for a service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"displayName\": \"Reads the service alerts\",\r\n \"description\": \"Reads the alerts for a service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ADHybridHealthService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ADHybridHealthService\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/NewRelic.APM\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"NewRelic.APM\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Devices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Devices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLakeAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLakeAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BigAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BigAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Sendgrid.Email\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Sendgrid.Email\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Compute\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Features\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Features\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Batch\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Batch\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLake\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLake\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.visualstudio\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.visualstudio\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataConnect\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataConnect\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cdn\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cdn\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Kona\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Kona\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/SuccessBricks.ClearDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"SuccessBricks.ClearDB\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.StreamAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.StreamAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLakeStore\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLakeStore\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BizTalkServices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BizTalkServices\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "268154" + "271543" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,10 +25,10 @@ "no-cache" ], "x-ms-request-id": [ - "46e40ce3-319c-44ae-9a94-2398c94d5eb0" + "c7383a2d-d691-40c3-b775-416830533fbd" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -37,22 +37,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "f257561c-c655-42de-9127-a755fa247d26" + "db7c5cb0-41cc-4306-97ea-80851ff9d55c" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012841Z:f257561c-c655-42de-9127-a755fa247d26" + "WESTUS:20151021T024630Z:db7c5cb0-41cc-4306-97ea-80851ff9d55c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:40 GMT" + "Wed, 21 Oct 2015 02:46:30 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -73,10 +73,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"displayName\": \"Microsoft Domains\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/generateSsoRequest/Action\",\r\n \"displayName\": \"Generate Domain Control Center Single Sign On Request\",\r\n \"description\": \"Generate a request for signing into domain control center.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action\",\r\n \"displayName\": \"Domain Purchase Info Validation\",\r\n \"description\": \"Validate domain purchase object without submitting it\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/checkDomainAvailability/Action\",\r\n \"displayName\": \"Check Domain Availablity\",\r\n \"description\": \"Check if a domain is available for purchase\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/listDomainRecommendations/Action\",\r\n \"displayName\": \"Retrieve Domain Recommendations\",\r\n \"description\": \"Retrieve the list domain recommendations based on keywords\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"domains\",\r\n \"displayName\": \"Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Read\",\r\n \"displayName\": \"Get Domains\",\r\n \"description\": \"Get the list of domains\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Write\",\r\n \"displayName\": \"Add or Update Domain\",\r\n \"description\": \"Add a new Domain or update an existing one\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Delete\",\r\n \"displayName\": \"Delete Domain\",\r\n \"description\": \"Delete an existing domain.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domains/operationresults\",\r\n \"displayName\": \"Domain operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/operationresults/Read\",\r\n \"displayName\": \"Get Domain Operation\",\r\n \"description\": \"Get a domain operation\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DomainRegistration\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DomainRegistration\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicCompute\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/checkDomainNameAvailability/action\",\r\n \"displayName\": \"Availability For A Domain Name\",\r\n \"description\": \"Checks the availability of a given domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"resourceTypes/skus\",\r\n \"displayName\": \"Sku\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/resourceTypes/skus/read\",\r\n \"displayName\": \"Get Supported Skus\",\r\n \"description\": \"Gets the Sku list for supported resource types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames\",\r\n \"displayName\": \"Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/read\",\r\n \"displayName\": \"Gets Domain Names\",\r\n \"description\": \"Return the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/write\",\r\n \"displayName\": \"Add Domain Names\",\r\n \"description\": \"Add or modify the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/delete\",\r\n \"displayName\": \"Remove Domain Names\",\r\n \"description\": \"Remove the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/swap/action\",\r\n \"displayName\": \"Swap Staging And Production Slots\",\r\n \"description\": \"Swaps the staging slot to the production slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates\",\r\n \"displayName\": \"Service Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/read\",\r\n \"displayName\": \"Get The Certificates\",\r\n \"description\": \"Returns the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/write\",\r\n \"displayName\": \"Add Service Certificates\",\r\n \"description\": \"Add or modify the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/delete\",\r\n \"displayName\": \"Delete Service Certificates\",\r\n \"description\": \"Delete the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions\",\r\n \"displayName\": \"Domain Name Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/read\",\r\n \"displayName\": \"Get The Domain Name Extensions\",\r\n \"description\": \"Returns the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/write\",\r\n \"displayName\": \"Add Domain Name Extensions\",\r\n \"description\": \"Add the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/delete\",\r\n \"displayName\": \"Remove Domain Name Extensions\",\r\n \"description\": \"Remove the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/active\",\r\n \"displayName\": \"Active Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/active/write\",\r\n \"displayName\": \"Set Active Domain Name\",\r\n \"description\": \"Sets the active domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots\",\r\n \"displayName\": \"Deployment Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/read\",\r\n \"displayName\": \"Get Deploymen Slots\",\r\n \"description\": \"Shows the deployment slots.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/write\",\r\n \"displayName\": \"Create Deployment Slot\",\r\n \"description\": \"Creates or update the deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/delete\",\r\n \"displayName\": \"Delete Deployment Slot\",\r\n \"description\": \"Deletes a given deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/start/action\",\r\n \"displayName\": \"Start Deployment Slot\",\r\n \"description\": \"Starts a deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/stop/action\",\r\n \"displayName\": \"Suspend Deployment Slot\",\r\n \"description\": \"Suspends the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles\",\r\n \"displayName\": \"Deployment Slot Role\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/read\",\r\n \"displayName\": \"Get Deployment Slot Role\",\r\n \"description\": \"Get the role for the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences\",\r\n \"displayName\": \"Deployment Slot Role Extension Reference\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/read\",\r\n \"displayName\": \"Get Deployment Slot Role Extension Reference\",\r\n \"description\": \"Returns the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/write\",\r\n \"displayName\": \"Add Deployment Slot Role Extension Reference\",\r\n \"description\": \"Add or modify the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/delete\",\r\n \"displayName\": \"Remove Deployment Slot Role Extension Reference\",\r\n \"description\": \"Remove the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances\",\r\n \"displayName\": \"Role Instance\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/read\",\r\n \"displayName\": \"Get Role Instance\",\r\n \"description\": \"Get the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/restart/action\",\r\n \"displayName\": \"Restart Role Instance\",\r\n \"description\": \"Restarts role instances.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/reimage/action\",\r\n \"displayName\": \"Reimage Role Instance\",\r\n \"description\": \"Reimages the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/start\",\r\n \"displayName\": \"Deployment Slot Start\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/start/write\",\r\n \"displayName\": \"Stop Deployment State\",\r\n \"description\": \"Changes the deployment slot state to stopped.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/stop\",\r\n \"displayName\": \"Deployment Slot Stopped\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/stop/write\",\r\n \"displayName\": \"Start Deployment State\",\r\n \"description\": \"Changes the deployment slot state to started.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/upgradeDomain\",\r\n \"displayName\": \"Upgrade Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/upgradeDomain/write\",\r\n \"displayName\": \"Upgrade The Domain\",\r\n \"description\": \"Walk upgrade the domain.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers\",\r\n \"displayName\": \"Internal Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/read\",\r\n \"displayName\": \"Get Internal Load Balancers.\",\r\n \"description\": \"Gets the internal load balancers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/write\",\r\n \"displayName\": \"Create Internal Load Balance\",\r\n \"description\": \"Creates a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/delete\",\r\n \"displayName\": \"Remove Internal Load Balance\",\r\n \"description\": \"Remove a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets\",\r\n \"displayName\": \"Load Balanced Endpoint Sets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/read\",\r\n \"displayName\": \"Get Load Balanced Endpoint Sets\",\r\n \"description\": \"Shows the load balanced endpoint sets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/availabilitySets\",\r\n \"displayName\": \"Availability Set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/availabilitySets/read\",\r\n \"displayName\": \"Show Availability Set\",\r\n \"description\": \"Show the availability set for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines\",\r\n \"displayName\": \"Virtual Machine\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/read\",\r\n \"displayName\": \"Retrieve Virtual Machines\",\r\n \"description\": \"Retrieves list of virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/write\",\r\n \"displayName\": \"Add Virtual Machines\",\r\n \"description\": \"Add or modify virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/delete\",\r\n \"displayName\": \"Remove Virtual Machines\",\r\n \"description\": \"Removes virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/start/action\",\r\n \"displayName\": \"Start Virtual Machine\",\r\n \"description\": \"Start the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/restart/action\",\r\n \"displayName\": \"Restart Virtual Machine\",\r\n \"description\": \"Restarts virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/stop/action\",\r\n \"displayName\": \"Stop Virtual Machine\",\r\n \"description\": \"Stops the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/shutdown/action\",\r\n \"displayName\": \"Shutdown Virtual Machine\",\r\n \"description\": \"Shutdown the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/attachDisk/action\",\r\n \"displayName\": \"Attach Data Disk\",\r\n \"description\": \"Attaches a data disk to a virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/detachDisk/action\",\r\n \"displayName\": \"Detach Data Disk\",\r\n \"description\": \"Detaches a data disk from virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/downloadRemoteDesktopConnectionFile/action\",\r\n \"displayName\": \"Download RDP File\",\r\n \"description\": \"Downloads the RDP file for virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions\",\r\n \"displayName\": \"Virtual Machine Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/read\",\r\n \"displayName\": \"Get Virtual Machine Extension\",\r\n \"description\": \"Gets the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/write\",\r\n \"displayName\": \"Add Virtual Machine Extension\",\r\n \"description\": \"Puts the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/asyncOperations\",\r\n \"displayName\": \"Virtual Machine Async Operations\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/asyncOperations/read\",\r\n \"displayName\": \"Async Operations\",\r\n \"description\": \"Gets the possible async operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/disks\",\r\n \"displayName\": \"Virtual Machine Disk\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/disks/read\",\r\n \"displayName\": \"Get Data Disks\",\r\n \"description\": \"Retrives list of data disks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicCompute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicCompute\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft SQL Database\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"servers\",\r\n \"displayName\": \"Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/import/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/upgrade/action\",\r\n \"displayName\": \"Upgrade server version\",\r\n \"description\": \"Enable new functionality available on the latest version of server and specify databases edition conversion map\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/operationResults\",\r\n \"displayName\": \"Server Upgrade Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/read\",\r\n \"displayName\": \"Get status of server upgrade operation\",\r\n \"description\": \"Operation is used to track progress of server upgrade from lower version to higher\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/delete\",\r\n \"displayName\": \"Cancel server upgrade\",\r\n \"description\": \"Abort server version upgrade in progress\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recoverableDatabases\",\r\n \"displayName\": \"Recoverable Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recoverableDatabases/read\",\r\n \"displayName\": \"Get the last known database recovery point\",\r\n \"description\": \"This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/serviceObjectives\",\r\n \"displayName\": \"Service Level Objective\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/serviceObjectives/read\",\r\n \"displayName\": \"Get service level objectives\",\r\n \"description\": \"Retrieve list of service level objectives (also known as performance tiers) available on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/firewallRules\",\r\n \"displayName\": \"Server Firewall Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/read\",\r\n \"displayName\": \"Get server firewall rules\",\r\n \"description\": \"Retrieve server firewall rule details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/write\",\r\n \"displayName\": \"Create new or update existing server firewall rule\",\r\n \"description\": \"Create or update server firewall rule that controls IP address range allowed to connect to the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/delete\",\r\n \"displayName\": \"Delete server firewall rule\",\r\n \"description\": \"Delete firewall rule from the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools\",\r\n \"displayName\": \"Recommended Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/read\",\r\n \"displayName\": \"Get recommended elastic database pools\",\r\n \"description\": \"Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historica resource utilization\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/metrics\",\r\n \"displayName\": \"Recommended Elastic Database Pool Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/metrics/read\",\r\n \"displayName\": \"Get recommended elastic database pools metrics\",\r\n \"description\": \"Retrieve metrics for recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/databases\",\r\n \"displayName\": \"Recommended Elastic Pool Databases\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/databases/read\",\r\n \"displayName\": \"Get recommended elastic pools databases\",\r\n \"description\": \"Retrieve databases that should be added into recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools\",\r\n \"displayName\": \"Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/read\",\r\n \"displayName\": \"Get elastic database pool details\",\r\n \"description\": \"Retrieve details of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/write\",\r\n \"displayName\": \"Create new or update existing elastic database pool\",\r\n \"description\": \"Create a new or change properties of existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/delete\",\r\n \"displayName\": \"Delete elastic database pool\",\r\n \"description\": \"Delete existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metricDefinitions\",\r\n \"displayName\": \"Elastic Database Pool Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metricDefinitions/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metric definitions\",\r\n \"description\": \"Return types of resource utilization metrics that are available for elastic database pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metrics\",\r\n \"displayName\": \"Elastic Database Pool Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metrics/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metrics\",\r\n \"description\": \"Return elastic database pool resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"displayName\": \"Elastic Pool Database Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read\",\r\n \"displayName\": \"Get elastic pool database activity\",\r\n \"description\": \"Retrieve activities and details on a given database that is part of elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolActivity\",\r\n \"displayName\": \"Elastic Database Pool Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read\",\r\n \"displayName\": \"Get elastic database pool activity\",\r\n \"description\": \"Retrieve activities and details on a given elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/databases/read\",\r\n \"displayName\": \"Get elastic pool databases\",\r\n \"description\": \"Retrieve list and details of databases that are part of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/usages\",\r\n \"displayName\": \"Server Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/usages/read\",\r\n \"displayName\": \"Get server usage details\",\r\n \"description\": \"Return server DTU quota and current DTU consuption by all databases within the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/restorableDroppedDatabases\",\r\n \"displayName\": \"Restorable Dropped Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/restorableDroppedDatabases/read\",\r\n \"displayName\": \"Get list of restorable dropped databases\",\r\n \"description\": \"Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/export/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/operationResults\",\r\n \"displayName\": \"Database Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/operationResults/read\",\r\n \"displayName\": \"Get status of database operation\",\r\n \"description\": \"Operation is used to track progress of long running database operation, such as scale.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/replicationLinks\",\r\n \"displayName\": \"Database Replication Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"displayName\": \"Get database replication links\",\r\n \"description\": \"Return a details about replication links established for a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\",\r\n \"displayName\": \"Terminate database replication\",\r\n \"description\": \"Terminate replication of a particular database with ability to specify whether link is terminated forcefully or gracefully\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"displayName\": \"Force-terminate database replication\",\r\n \"description\": \"Force-terminate database replication\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies\",\r\n \"displayName\": \"Database Data Masking Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/read\",\r\n \"displayName\": \"Get database data masking policy\",\r\n \"description\": \"Retrieve details of the data masking policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/write\",\r\n \"displayName\": \"Set database data masking policy\",\r\n \"description\": \"Change data masking policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"displayName\": \"Database Data Masking Policy Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read\",\r\n \"displayName\": \"Get database data masking policy rule\",\r\n \"description\": \"Retrieve details of the data masking policy rule configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write\",\r\n \"displayName\": \"Set database data masking policy rule\",\r\n \"description\": \"Change data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/delete\",\r\n \"displayName\": \"Delete database data masking policy rule\",\r\n \"description\": \"Delete data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metricDefinitions\",\r\n \"displayName\": \"Database Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metricDefinitions/read\",\r\n \"displayName\": \"Get database resource consumption metric definitions\",\r\n \"description\": \"Return types of metrics that are available for databases to indicate resource consuption that can be alerted on\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries\",\r\n \"displayName\": \"Database Top Queries\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/read\",\r\n \"displayName\": \"Get Top Queries for the database\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/queryText\",\r\n \"displayName\": \"Database Top Queries query text\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/queryText/read\",\r\n \"displayName\": \"Get Database Top Queries query text\",\r\n \"description\": \"Returns the Transact-SQL text for selected query ID\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/statistics\",\r\n \"displayName\": \"Database Top Queries Statistics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/statistics/read\",\r\n \"displayName\": \"Get Database Top Queries statistics\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/connectionPolicies\",\r\n \"displayName\": \"Database Connection Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/read\",\r\n \"displayName\": \"Get database connection policy\",\r\n \"description\": \"Retrieve details of the connection policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/write\",\r\n \"displayName\": \"Set database connection policy\",\r\n \"description\": \"Change connection policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metrics\",\r\n \"displayName\": \"Database Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metrics/read\",\r\n \"displayName\": \"Get database resource consumption metrics\",\r\n \"description\": \"Return database resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/transparentDataEncryption\",\r\n \"displayName\": \"Database Transparent Data Encryption\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/read\",\r\n \"displayName\": \"Get database transparent data encryption details\",\r\n \"description\": \"Retrieve status and details of transparent data encryption security feature for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/write\",\r\n \"displayName\": \"Change transparent data encryption state\",\r\n \"description\": \"Enable or disable transparent data encryption for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/auditingPolicies\",\r\n \"displayName\": \"Database Auditing Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/read\",\r\n \"displayName\": \"Get database auditing policy\",\r\n \"description\": \"Retrieve details of the auditing policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/write\",\r\n \"displayName\": \"Set database auditing policy\",\r\n \"description\": \"Change auditing policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/serviceTierAdvisors\",\r\n \"displayName\": \"Database Service Tier Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors/read\",\r\n \"displayName\": \"Get recommended database performance level\",\r\n \"description\": \"Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/usages\",\r\n \"displayName\": \"Database Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/usages/read\",\r\n \"displayName\": \"Get database usage details\",\r\n \"description\": \"Return database maxiumum size that can be reached and current size occupied by data\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/queryStore\",\r\n \"displayName\": \"Query Store settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/read\",\r\n \"displayName\": \"Get Query Store settings\",\r\n \"description\": \"Returns current values of Query Store settings for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/write\",\r\n \"displayName\": \"Update Query Store settings\",\r\n \"description\": \"Updates Query Store setting for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/recommendedIndexes\",\r\n \"displayName\": \"Recommended Index\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read\",\r\n \"displayName\": \"Get list of index recommendations\",\r\n \"description\": \"Retrieve list of index recommendations on a database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write\",\r\n \"displayName\": \"Update Recommended Index State\",\r\n \"description\": \"Apply index recommendation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/columns\",\r\n \"displayName\": \"Database table column\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"displayName\": \"Get columns\",\r\n \"description\": \"Retrieve list of columns of a table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/missingindexes\",\r\n \"displayName\": \"Database Index Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/read\",\r\n \"displayName\": \"Get recommended database indexes\",\r\n \"description\": \"Return suggestions about database indexes to create, modify or delete in order to improve query performance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/write\",\r\n \"displayName\": \"Apply recommended database index\",\r\n \"description\": \"Use database index recommendation in a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/importExportOperationResults\",\r\n \"displayName\": \"Database Import/Export Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import or export operation on the server\",\r\n \"description\": \"Return details about database import or export operation from DacPac located in storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/importExportOperationResults\",\r\n \"displayName\": \"Server Database Import Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import operation on the server\",\r\n \"description\": \"Return the list with details for database import operations from storage account on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Sql\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Sql\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft API Management\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/checkNameAvailability/action\",\r\n \"displayName\": \"Check Name Availability\",\r\n \"description\": \"Checks if provided service name is available\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"service\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/write\",\r\n \"displayName\": \"Create a new instance of API Management Service\",\r\n \"description\": \"Create a new instance of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/read\",\r\n \"displayName\": \"Read metadata for an API Management Service instance\",\r\n \"description\": \"Read metadata for an API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/delete\",\r\n \"displayName\": \"Delete API Management Service instance\",\r\n \"description\": \"Delete API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"displayName\": \"Update domain names\",\r\n \"description\": \"Setup, update or remove custom domain names for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"displayName\": \"Upload SSL certificate\",\r\n \"description\": \"Upload SSL certificate for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/checkcustomhostname/action\",\r\n \"displayName\": \"Check hostname mapping\",\r\n \"description\": \"Checks if provided host name correctly resolves to *.azure-api.net\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/action\",\r\n \"displayName\": \"Backup API Management Service\",\r\n \"description\": \"Backup API Management Service to the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/action\",\r\n \"displayName\": \"Restore API Management Service\",\r\n \"description\": \"Restore API Management Service from the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"displayName\": \"Manage Service Deployments\",\r\n \"description\": \"Change SKU/units, add/remove regional deployments of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/action\",\r\n \"displayName\": \"Manage VPN configuration\",\r\n \"description\": \"Change VPN configuration of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/operationresults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/operationresults/read\",\r\n \"displayName\": \"Get long running operation result\",\r\n \"description\": \"Gets current status of long running operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backup/operationresults\",\r\n \"displayName\": \"Backup Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/operationresults/read\",\r\n \"displayName\": \"Get backup operation result\",\r\n \"description\": \"Gets current status of backup operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/issues\",\r\n \"displayName\": \"Collection of all API Management issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/issues/read\",\r\n \"displayName\": \"Gets all API Management issues\",\r\n \"description\": \"Gets all API Management issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/loggers\",\r\n \"displayName\": \"Logger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/read\",\r\n \"displayName\": \"Gets loggers available to the current user\",\r\n \"description\": \"Gets loggers available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/write\",\r\n \"displayName\": \"Adds a new logger\",\r\n \"description\": \"Adds a new logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/delete\",\r\n \"displayName\": \"Removes existing logger\",\r\n \"description\": \"Removes existing logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users\",\r\n \"displayName\": \"User account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/read\",\r\n \"displayName\": \"Gets registered users\",\r\n \"description\": \"Gets registered users\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/write\",\r\n \"displayName\": \"Registers a new user\",\r\n \"description\": \"Registers a new user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/delete\",\r\n \"displayName\": \"Removes user account\",\r\n \"description\": \"Removes user account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/generateSsoUrl/action\",\r\n \"displayName\": \"Execute action\",\r\n \"description\": \"Execute action\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues\",\r\n \"displayName\": \"Get user issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/read\",\r\n \"displayName\": \"Get list of all user reported issues\",\r\n \"description\": \"Get list of all user reported issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/write\",\r\n \"displayName\": \"Registers an issue to API Management\",\r\n \"description\": \"Registers an issue to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/comments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/roles\",\r\n \"displayName\": \"Security roles assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/roles/read\",\r\n \"displayName\": \"Get roles\",\r\n \"description\": \"Get roles\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/subscriptions\",\r\n \"displayName\": \"Regenerates subscription key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/read\",\r\n \"displayName\": \"Gets user subscriptions\",\r\n \"description\": \"Gets user subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/write\",\r\n \"displayName\": \"Requests subscription for a new product\",\r\n \"description\": \"Requests subscription for a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/read\",\r\n \"displayName\": \"Get list of all user applications\",\r\n \"description\": \"Get list of all user applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/write\",\r\n \"displayName\": \"Add Attachment to application\",\r\n \"description\": \"Add Attachment to application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/delete\",\r\n \"displayName\": \"Removes an attachment\",\r\n \"description\": \"Removes an attachment\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/identities\",\r\n \"displayName\": \"Collection of user credentials for different identity providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities/read\",\r\n \"displayName\": \"Get identity collection\",\r\n \"description\": \"Get identity collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/keys\",\r\n \"displayName\": \"Shared access key set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/keys/read\",\r\n \"displayName\": \"Gets user keys\",\r\n \"description\": \"Gets user keys\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/groups\",\r\n \"displayName\": \"Developer groups assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/groups/read\",\r\n \"displayName\": \"Gets user groups\",\r\n \"description\": \"Gets user groups\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/settings\",\r\n \"displayName\": \"Tenant settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/read\",\r\n \"displayName\": \"Get tenant's settings\",\r\n \"description\": \"Get tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/write\",\r\n \"displayName\": \"Update tenant's settings\",\r\n \"description\": \"Update tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/policy\",\r\n \"displayName\": \"Tenant-level policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/save/action\",\r\n \"displayName\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"description\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/deploy/action\",\r\n \"displayName\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"description\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/validate/action\",\r\n \"displayName\": \"Validates changes from the specified branch\",\r\n \"description\": \"Validates changes from the specified branch\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration/operationResults\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/operationResults/read\",\r\n \"displayName\": \"Returns results of operations\",\r\n \"description\": \"Returns results of operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access\",\r\n \"displayName\": \"Tenant access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access/git\",\r\n \"displayName\": \"Tenant git access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managedeployments/operationresults\",\r\n \"displayName\": \"Manage Deployments Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/operationresults/read\",\r\n \"displayName\": \"Get manage deployments operation result\",\r\n \"description\": \"Gets current status of manage deployments operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/subscriptions\",\r\n \"displayName\": \"Product subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"displayName\": \"Gets product subscriptions\",\r\n \"description\": \"Gets product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/write\",\r\n \"displayName\": \"Subscribes user to the product\",\r\n \"description\": \"Subscribes user to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/delete\",\r\n \"displayName\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"description\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managevpn/operationresults\",\r\n \"displayName\": \"Manage VPN Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/operationresults/read\",\r\n \"displayName\": \"Get manage VPN operation result\",\r\n \"description\": \"Gets current status of manage VPN operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/read\",\r\n \"displayName\": \"Gets all all API Management applications\",\r\n \"description\": \"Gets all all API Management applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications/attachments\",\r\n \"displayName\": \"Application Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backends\",\r\n \"displayName\": \"Backend\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/read\",\r\n \"displayName\": \"Gets backends available to the current user\",\r\n \"description\": \"Gets backends available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/write\",\r\n \"displayName\": \"Adds a new backend\",\r\n \"description\": \"Adds a new backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/delete\",\r\n \"displayName\": \"Removes existing backend\",\r\n \"description\": \"Removes existing backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis\",\r\n \"displayName\": \"API\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/read\",\r\n \"displayName\": \"Get registered APIs\",\r\n \"description\": \"Get registered APIs\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/write\",\r\n \"displayName\": \"Create new API\",\r\n \"description\": \"Create new API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/delete\",\r\n \"displayName\": \"Remove API\",\r\n \"description\": \"Remove API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues\",\r\n \"displayName\": \"API issue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/read\",\r\n \"displayName\": \"Get Issues associated with API\",\r\n \"description\": \"Get Issues associated with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/write\",\r\n \"displayName\": \"Updates issue details\",\r\n \"description\": \"Updates issue details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/delete\",\r\n \"displayName\": \"Removes existing issue\",\r\n \"description\": \"Removes existing issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/comments\",\r\n \"displayName\": \"Issue Comments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/read\",\r\n \"displayName\": \"Gets issue comments\",\r\n \"description\": \"Gets issue comments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/attachments\",\r\n \"displayName\": \"Issue Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/read\",\r\n \"displayName\": \"Gets issue attachments\",\r\n \"description\": \"Gets issue attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/products\",\r\n \"displayName\": \"API associated products\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/products/read\",\r\n \"displayName\": \"Get associated Products with API\",\r\n \"description\": \"Get associated Products with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/policy\",\r\n \"displayName\": \"API policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations\",\r\n \"displayName\": \"API operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/read\",\r\n \"displayName\": \"Get API operations\",\r\n \"description\": \"Get API operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/write\",\r\n \"displayName\": \"Create new API operation\",\r\n \"description\": \"Create new API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/delete\",\r\n \"displayName\": \"Remove API operation\",\r\n \"description\": \"Remove API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations/policy\",\r\n \"displayName\": \"Operation policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas\",\r\n \"displayName\": \"API Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/read\",\r\n \"displayName\": \"Gets all the schemas stored for a given API\",\r\n \"description\": \"Gets all the schemas stored for a given API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/write\",\r\n \"displayName\": \"Sets the Schemas used by the API\",\r\n \"description\": \"Sets the Schemas used by the API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/delete\",\r\n \"displayName\": \"Removes existing Schema\",\r\n \"description\": \"Removes existing Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas/document\",\r\n \"displayName\": \"Document describing the API schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/read\",\r\n \"displayName\": \"Get the document describing the Schema\",\r\n \"description\": \"Get the document describing the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/write\",\r\n \"displayName\": \"Update the document for the Schema\",\r\n \"description\": \"Update the document for the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products\",\r\n \"displayName\": \"Product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/read\",\r\n \"displayName\": \"Gets products available to current user\",\r\n \"description\": \"Gets products available to current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/write\",\r\n \"displayName\": \"Creates a new product\",\r\n \"description\": \"Creates a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/delete\",\r\n \"displayName\": \"Removes existing product\",\r\n \"description\": \"Removes existing product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/subscriptions\",\r\n \"displayName\": \"Product subscriptions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptions/read\",\r\n \"displayName\": \"Get product subscriptions\",\r\n \"description\": \"Get product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/apis\",\r\n \"displayName\": \"API added to product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/read\",\r\n \"displayName\": \"Gets APIs included into the product\",\r\n \"description\": \"Gets APIs included into the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/write\",\r\n \"displayName\": \"Add API to product\",\r\n \"description\": \"Add API to product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/delete\",\r\n \"displayName\": \"Remove API from product\",\r\n \"description\": \"Remove API from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/policy\",\r\n \"displayName\": \"Product policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/groups\",\r\n \"displayName\": \"Assigned developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/read\",\r\n \"displayName\": \"Gets groups assigned to the product\",\r\n \"description\": \"Gets groups assigned to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/write\",\r\n \"displayName\": \"Assigns group to the product\",\r\n \"description\": \"Assigns group to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/delete\",\r\n \"displayName\": \"Removes group assignment from product\",\r\n \"description\": \"Removes group assignment from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/updatehostname/operationresults\",\r\n \"displayName\": \"Update Hostnames Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/operationresults/read\",\r\n \"displayName\": \"Get update hostnames operation result\",\r\n \"description\": \"Gets current status of update hostnames operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policySnippets\",\r\n \"displayName\": \"Collection of policy snippets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policySnippets/read\",\r\n \"displayName\": \"Get snippets\",\r\n \"description\": \"Get snippets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/read\",\r\n \"displayName\": \"Gets certificates available to the current user\",\r\n \"description\": \"Gets certificates available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/write\",\r\n \"displayName\": \"Adds a new certificate\",\r\n \"description\": \"Adds a new certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/delete\",\r\n \"displayName\": \"Removes existing certificate\",\r\n \"description\": \"Removes existing certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/templates\",\r\n \"displayName\": \"API Management email template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/read\",\r\n \"displayName\": \"Gets all email templates\",\r\n \"description\": \"Gets all email templates\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/write\",\r\n \"displayName\": \"Updates email template\",\r\n \"description\": \"Updates email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/delete\",\r\n \"displayName\": \"Reset existing email template\",\r\n \"description\": \"Reset existing email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/regions\",\r\n \"displayName\": \"Service Regions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/regions/read\",\r\n \"displayName\": \"Gets service regions\",\r\n \"description\": \"Gets service regions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policyChecks\",\r\n \"displayName\": \"Collection of policy checks\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policyChecks/read\",\r\n \"displayName\": \"Get policy checks\",\r\n \"description\": \"Get policy checks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/restore/operationresults\",\r\n \"displayName\": \"Restore Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/operationresults/read\",\r\n \"displayName\": \"Get restore operation result\",\r\n \"description\": \"Gets current status of restore operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/properties\",\r\n \"displayName\": \"Configuration property\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/read\",\r\n \"displayName\": \"Gets list of all properties\",\r\n \"description\": \"Gets list of all properties\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/write\",\r\n \"displayName\": \"Creates a new property\",\r\n \"description\": \"Creates a new property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/delete\",\r\n \"displayName\": \"Removes existing property\",\r\n \"description\": \"Removes existing property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups\",\r\n \"displayName\": \"Developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/read\",\r\n \"displayName\": \"Gets existing groups details\",\r\n \"description\": \"Gets existing groups details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/write\",\r\n \"displayName\": \"Creates a new group\",\r\n \"description\": \"Creates a new group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/delete\",\r\n \"displayName\": \"Removes existing group\",\r\n \"description\": \"Removes existing group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups/users\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/read\",\r\n \"displayName\": \"Gets group members\",\r\n \"description\": \"Gets group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/write\",\r\n \"displayName\": \"Includes user in the group\",\r\n \"description\": \"Includes user in the group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/delete\",\r\n \"displayName\": \"Removes user from group members\",\r\n \"description\": \"Removes user from group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/getssotoken\",\r\n \"displayName\": \"SSO Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/getssotoken/read\",\r\n \"displayName\": \"Get SSO token\",\r\n \"description\": \"Gets SSO token that can be used to login into API Management Service portal as an administrator\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/authorizationServers\",\r\n \"displayName\": \"OAuth Authorization Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"displayName\": \"Get authorization servers list\",\r\n \"description\": \"Get authorization servers list\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/write\",\r\n \"displayName\": \"Creates a new authorization server\",\r\n \"description\": \"Creates a new authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/delete\",\r\n \"displayName\": \"Removes authorization server\",\r\n \"description\": \"Removes authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications\",\r\n \"displayName\": \"Azure Active Directory Application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/read\",\r\n \"displayName\": \"Gets all Azure Active Directory Applications\",\r\n \"description\": \"Gets all Azure Active Directory Applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory Application\",\r\n \"description\": \"Registers a new Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/delete\",\r\n \"displayName\": \"Removes Azure Active Directory Application\",\r\n \"description\": \"Removes Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications/directories\",\r\n \"displayName\": \"Azure Active Directory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/read\",\r\n \"displayName\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"description\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory\",\r\n \"description\": \"Registers a new Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/delete\",\r\n \"displayName\": \"Removes Azure Active Directory\",\r\n \"description\": \"Removes Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applicationCategory\",\r\n \"displayName\": \"CAPI Management application categories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applicationCategory/read\",\r\n \"displayName\": \"Gets all Application categories\",\r\n \"description\": \"Gets all Application categories\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ApiManagement\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ApiManagement\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure ServiceBus\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/write\",\r\n \"displayName\": \"Create or Update Relay\",\r\n \"description\": \"Create or Update Relay properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/read\",\r\n \"displayName\": \"Get Relay\",\r\n \"description\": \"Get list of Relay Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/Delete\",\r\n \"displayName\": \"Delete Relay\",\r\n \"description\": \"Operation to delete Relay Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/action\",\r\n \"displayName\": \" Get Relay Authorization Rules\",\r\n \"description\": \" Get the list of Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays/authorizationRules\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Relay Authorization Rule\",\r\n \"description\": \"Create Relay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/delete\",\r\n \"displayName\": \"Delete Relay Authorization Rules\",\r\n \"description\": \"Operation to delete Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Relay Listkeys\",\r\n \"description\": \"Get the Connection String to Relay\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/write\",\r\n \"displayName\": \"Create or Update Queue\",\r\n \"description\": \"Create or Update Queue properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/read\",\r\n \"displayName\": \"Get Queue\",\r\n \"description\": \"Get list of Queue Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/Delete\",\r\n \"displayName\": \"Delete Queue\",\r\n \"description\": \"Operation to delete Queue Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/action\",\r\n \"displayName\": \" Get Queue Authorization Rules\",\r\n \"description\": \" Get the list of Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues/authorizationRules\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Queue Authorization Rule\",\r\n \"description\": \"Create Queue Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/delete\",\r\n \"displayName\": \"Delete Queue Authorization Rules\",\r\n \"description\": \"Operation to delete Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Queue Listkeys\",\r\n \"description\": \"Get the Connection String to Queue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/write\",\r\n \"displayName\": \"Create or Update Topic\",\r\n \"description\": \"Create or Update Topic properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/read\",\r\n \"displayName\": \"Get Topic\",\r\n \"description\": \"Get list of Topic Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/Delete\",\r\n \"displayName\": \"Delete Topic\",\r\n \"description\": \"Operation to delete Topic Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/action\",\r\n \"displayName\": \" Get Topic Authorization Rules\",\r\n \"description\": \" Get the list of Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/authorizationRules\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Topic Authorization Rule\",\r\n \"description\": \"Create Topic Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/delete\",\r\n \"displayName\": \"Delete Topic Authorization Rules\",\r\n \"description\": \"Operation to delete Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Topic Listkeys\",\r\n \"description\": \"Get the Connection String to Topic\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/subscriptions\",\r\n \"displayName\": \"TopicSubscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/write\",\r\n \"displayName\": \"Create or Update TopicSubscription\",\r\n \"description\": \"Create or Update TopicSubscription properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/read\",\r\n \"displayName\": \"Get TopicSubscription\",\r\n \"description\": \"Get list of TopicSubscription Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/Delete\",\r\n \"displayName\": \"Delete TopicSubscription\",\r\n \"description\": \"Operation to delete TopicSubscription Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"premiumMessagingRegions\",\r\n \"displayName\": \"Non Resource Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/premiumMessagingRegions/read\",\r\n \"displayName\": \"Get premium messaging regions.\",\r\n \"description\": \"Get premium messaging regions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ServiceBus\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ServiceBus\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DocumentDb\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/action\",\r\n \"displayName\": \"Create database account\",\r\n \"description\": \"Create a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"databaseAccountNames\",\r\n \"displayName\": \"Database Account Names\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccountNames/read\",\r\n \"displayName\": \"Read database account names\",\r\n \"description\": \"Checks for name availability.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts\",\r\n \"displayName\": \"Database Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"displayName\": \"Read database account\",\r\n \"description\": \"Reads a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"displayName\": \"Update database account\",\r\n \"description\": \"Update a database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"displayName\": \"Delete database accounts\",\r\n \"description\": \"Deletes the database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metricDefinitions\",\r\n \"displayName\": \"Database Accoun metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metricDefinitions/read\",\r\n \"displayName\": \"Read database account metrics definitions\",\r\n \"description\": \"Reads the database account metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metrics\",\r\n \"displayName\": \"Database Account metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metrics/read\",\r\n \"displayName\": \"Read database account metrics\",\r\n \"description\": \"Reads the database account metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/usages\",\r\n \"displayName\": \"Database Account usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/usages/read\",\r\n \"displayName\": \"Read database account usages\",\r\n \"description\": \"Reads the database account usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metricDefinitions\",\r\n \"displayName\": \"Collection metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metricDefinitions/read\",\r\n \"displayName\": \"Read collection metric definitions\",\r\n \"description\": \"Reads the collection metric definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metrics\",\r\n \"displayName\": \"Collection metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metrics/read\",\r\n \"displayName\": \"Read collection metrics\",\r\n \"description\": \"Reads the collection metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/usages\",\r\n \"displayName\": \"Collection usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/usages/read\",\r\n \"displayName\": \"Read collection usages\",\r\n \"description\": \"Reads the collection usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metricDefinitions\",\r\n \"displayName\": \"Database metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metricDefinitions/read\",\r\n \"displayName\": \"Read database metric definitions\",\r\n \"description\": \"Reads the database metric definitions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metrics\",\r\n \"displayName\": \"Database metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metrics/read\",\r\n \"displayName\": \"Read database metrics\",\r\n \"description\": \"Reads the database metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/usages\",\r\n \"displayName\": \"Database usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/usages/read\",\r\n \"displayName\": \"Read database usages\",\r\n \"description\": \"Reads the database usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/readonlykeys\",\r\n \"displayName\": \"Database Account readonly keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/read\",\r\n \"displayName\": \"Read database account readonly keys\",\r\n \"description\": \"Reads the database account readonly keys.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DocumentDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DocumentDB\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Automation\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"automationAccounts\",\r\n \"displayName\": \"Azure Automation Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/configurations\",\r\n \"displayName\": \"Azure Automation Desired State Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get an Azure Automation DSC's content\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobSchedules\",\r\n \"displayName\": \"Azure Automation Job Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connectionTypes\",\r\n \"displayName\": \"Azure Automation Connection Type Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/modules\",\r\n \"displayName\": \"Azure Automation Module\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/credentials\",\r\n \"displayName\": \"Azure Automation Credential Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/certificates\",\r\n \"displayName\": \"Azure Automation Certificate Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/schedules\",\r\n \"displayName\": \"Azure Automation Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs\",\r\n \"displayName\": \"Azure Automation Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs/streams\",\r\n \"displayName\": \"Azure Automation Job Stream\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job stream\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connections\",\r\n \"displayName\": \"Azure Automation Connection Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/variables\",\r\n \"displayName\": \"Azure Automation Variable Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks\",\r\n \"displayName\": \"Azure Automation Runbook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft\",\r\n \"displayName\": \"Azure Automation Runbook Draft\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/writeContent/action\",\r\n \"displayName\": \"Write Content\",\r\n \"description\": \"Create the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/publish/action\",\r\n \"displayName\": \"Publish\",\r\n \"description\": \"Publish an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/undoEdit/action\",\r\n \"displayName\": \"Undo Edit\",\r\n \"description\": \"Undo edits to an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft/testJob\",\r\n \"displayName\": \"Azure Automation Runbook Draft Test Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/webhooks\",\r\n \"displayName\": \"Azure Automation Webhook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation webhook \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/generateUri/action\",\r\n \"displayName\": \"Generate URI\",\r\n \"description\": \"Generate a URI for an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Automation\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Automation\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft authorization\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"classicAdministrators\",\r\n \"displayName\": \"Classic subscription administrator\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"displayName\": \"Get administrator\",\r\n \"description\": \"Reads the administrators for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/write\",\r\n \"displayName\": \"Set administrator\",\r\n \"description\": \"Add or modify administrator to a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/delete\",\r\n \"displayName\": \"Delete administrator\",\r\n \"description\": \"Removes the administrator from the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locks\",\r\n \"displayName\": \"Management lock\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/read\",\r\n \"displayName\": \"Get management locks\",\r\n \"description\": \"Gets locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/write\",\r\n \"displayName\": \"Add management locks\",\r\n \"description\": \"Add locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/delete\",\r\n \"displayName\": \"Delete management locks\",\r\n \"description\": \"Delete locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"permissions\",\r\n \"displayName\": \"Permission\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/permissions/read\",\r\n \"displayName\": \"List permissions\",\r\n \"description\": \"Lists all the permissions the caller has at a given scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleDefinitions\",\r\n \"displayName\": \"Role definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"displayName\": \"Get role definition\",\r\n \"description\": \"Get information about a role definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleAssignments\",\r\n \"displayName\": \"Role assignment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/read\",\r\n \"displayName\": \"Get role assignment\",\r\n \"description\": \"Get information about a role assignment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/write\",\r\n \"displayName\": \"Create role assignment\",\r\n \"description\": \"Create a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"displayName\": \"Delete role assignment\",\r\n \"description\": \"Delete a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Authorization\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Authorization\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Storage\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/write\",\r\n \"displayName\": \"Create/Update Storage Account\",\r\n \"description\": \"Creates a storage account with the specified parameters or update the properties or tags or adds custom domain for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Deletes an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"displayName\": \"List Storage Account Keys\",\r\n \"description\": \"Returns the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"displayName\": \"Regenerate Storage Account Keys\",\r\n \"description\": \"Regenerates the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/read\",\r\n \"displayName\": \"List/Get Storage Account(s)\",\r\n \"description\": \"Returns the list of storage accounts or gets the properties for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/checknameavailability\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/checknameavailability/read\",\r\n \"displayName\": \"Check Account Name Availability\",\r\n \"description\": \"Checks that account name is valid and is not in use.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/usages\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/usages/read\",\r\n \"displayName\": \"Get Subscription Usages\",\r\n \"description\": \"Returns the limit and the current usage count for resources in the specified subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Storage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/register/action\",\r\n \"displayName\": \"Register Subscription\",\r\n \"description\": \"Registers the subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"dnszones\",\r\n \"displayName\": \"DNS Zone\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/read\",\r\n \"displayName\": \"Get DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/write\",\r\n \"displayName\": \"Create or Update DNS Zone\",\r\n \"description\": \"Create or update a DNS zone within a resource group. Used to update the tags on a DNS zone resource. Note that this command can not be used to create or update record sets within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/delete\",\r\n \"displayName\": \"Delete DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/MX\",\r\n \"displayName\": \"DNS MX RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/read\",\r\n \"displayName\": \"Get RecordSet MX\",\r\n \"description\": \"Get the record set of type ‘MX’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/write\",\r\n \"displayName\": \"Create or update RecordSet MX\",\r\n \"description\": \"Create or update a record set of type ‘MX’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/delete\",\r\n \"displayName\": \"Delete RecordSet MX\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/AAAA\",\r\n \"displayName\": \"DNS AAAA RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/read\",\r\n \"displayName\": \"Get RecordSet AAAA\",\r\n \"description\": \"Get the record set of type ‘AAAA’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/write\",\r\n \"displayName\": \"Create or update RecordSet AAAA\",\r\n \"description\": \"Create or update a record set of type ‘AAAA’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/delete\",\r\n \"displayName\": \"Delete RecordSet AAAA\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/SRV\",\r\n \"displayName\": \"DNS SRV RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/read\",\r\n \"displayName\": \"Get RecordSet SRV\",\r\n \"description\": \"Get the record set of type ‘SRV’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/write\",\r\n \"displayName\": \"Create or update a record set of type ‘SRV’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"description\": \"Create or update RecordSet SRV\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/delete\",\r\n \"displayName\": \"Delete RecordSet SRV\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/PTR\",\r\n \"displayName\": \"DNS PTR RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/read\",\r\n \"displayName\": \"Get RecordSet PTR\",\r\n \"description\": \"Get the record set of type ‘PTR’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/write\",\r\n \"displayName\": \"Create or update RecordSet PTR\",\r\n \"description\": \"Create or update a record set of type ‘PTR’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/delete\",\r\n \"displayName\": \"Delete RecordSet PTR\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/A\",\r\n \"displayName\": \"DNS A RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/read\",\r\n \"displayName\": \"Get RecordSet A\",\r\n \"description\": \"Get the record set of type ‘A’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/write\",\r\n \"displayName\": \"Create or update RecordSet A\",\r\n \"description\": \"Create or update a record set of type ‘A’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/delete\",\r\n \"displayName\": \"Delete RecordSet A\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/TXT\",\r\n \"displayName\": \"DNS TXT RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/read\",\r\n \"displayName\": \"Get RecordSet TXT\",\r\n \"description\": \"Get the record set of type ‘TXT’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/write\",\r\n \"displayName\": \"Create or update RecordSet TXT\",\r\n \"description\": \"Create or update a record set of type ‘TXT’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/delete\",\r\n \"displayName\": \"Delete RecordSet TXT\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces\",\r\n \"displayName\": \"Network Interface\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/read\",\r\n \"displayName\": \"Get Network Interface\",\r\n \"description\": \"Gets a network interface definition. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/write\",\r\n \"displayName\": \"Create or Update Network Interface\",\r\n \"description\": \"Creates a network interface or updates an existing network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"displayName\": \"Join Virtual Machine to a network interface\",\r\n \"description\": \"Joins a Virtual Machine to a network interface\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/delete\",\r\n \"displayName\": \"Delete Network Interface\",\r\n \"description\": \"Deletes a network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces/loadBalancers\",\r\n \"displayName\": \"Network Interface Load Balancers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"displayName\": \"Get Network Interface Load Balancers\",\r\n \"description\": \"Gets all the load balancers that the network interface is part of\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicIPAddresses\",\r\n \"displayName\": \"Public Ip Address\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/read\",\r\n \"displayName\": \"Get Public Ip Address\",\r\n \"description\": \"Gets a public ip address definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/write\",\r\n \"displayName\": \"Create or Update Public Ip Address\",\r\n \"description\": \"Creates a public Ip address or updates an existing public Ip address. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"displayName\": \"Delete Public Ip Address\",\r\n \"description\": \"Deletes a public Ip address.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"displayName\": \"Join Public Ip Address\",\r\n \"description\": \"Joins a public ip address\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Public IP Address Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Public IP Address Diagnostic Settings\",\r\n \"description\": \"Gets the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Public IP Address Diagnostic Settings\",\r\n \"description\": \"Creates or updates the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Public IP Address Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Public IP Address Event Log Definitions\",\r\n \"description\": \"Gets the events for Public IP Address\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"LoadBalancerAlertEvent\",\r\n \"displayName\": \"Load Balancer Alert Events\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"PublicIpProgrammingStatus\",\r\n \"displayName\": \"Public IP Programming Status\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers\",\r\n \"displayName\": \"Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/read\",\r\n \"displayName\": \"Get Load Balancer\",\r\n \"description\": \"Gets a load balancer definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/write\",\r\n \"displayName\": \"Create or Update Load Balancer\",\r\n \"description\": \"Creates a load balancer or updates an existing load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/delete\",\r\n \"displayName\": \"Delete Load Balancer\",\r\n \"description\": \"Deletes a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/networkInterfaces\",\r\n \"displayName\": \"Load Balancer Network Interfaces\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"displayName\": \"Get Load Balancer Network Interfaces\",\r\n \"description\": \"Gets references to all the network interfaces under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/loadBalancingRules\",\r\n \"displayName\": \"Load Balancer Load Balancing Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"displayName\": \"Get Load Balancer Load Balancing Rule\",\r\n \"description\": \"Gets a load balancer load balancing rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Load Balancing Rule\",\r\n \"description\": \"Creates a load balancer load balancing rule or updates an existing load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Load Balancing Rule\",\r\n \"description\": \"Deletes a load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/backendAddressPools\",\r\n \"displayName\": \"Load Balancer Backend Address Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Load Balancer Backend Address Pool\",\r\n \"description\": \"Joins a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"displayName\": \"Get Load Balancer Backend Address Pool\",\r\n \"description\": \"Gets a load balancer backend address pool definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"displayName\": \"Create or Update Load Balancer Backend Address Pool\",\r\n \"description\": \"Creates a load balancer backend address pool or updates an existing load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"displayName\": \"Delete Load Balancer Backend Address Pool\",\r\n \"description\": \"Deletes a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/inboundNatRules\",\r\n \"displayName\": \"Load Balancer Inbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"displayName\": \"Join Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Joins a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Gets a load balancer inbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Creates a load balancer inbound nat rule or updates an existing load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/outboundNatRules\",\r\n \"displayName\": \"Load Balancer Outbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Gets a load balancer outbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Creates a load balancer outbound nat rule or updates an existing load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/probes\",\r\n \"displayName\": \"Load Balancer Probe\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"displayName\": \"Get Load Balancer Probe\",\r\n \"description\": \"Gets a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/write\",\r\n \"displayName\": \"Create or Update Load Balancer Probe\",\r\n \"description\": \"Creates a load balancer probe or updates an existing load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/delete\",\r\n \"displayName\": \"Delete Load Balancer Probe\",\r\n \"description\": \"Deletes a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/virtualMachines\",\r\n \"displayName\": \"Load Balancer Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"displayName\": \"Get Load Balancer Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/write\",\r\n \"displayName\": \"Create or Update Virtual Network\",\r\n \"description\": \"Creates a virtual network or updates an existing virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network\",\r\n \"description\": \"Deletes a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets\",\r\n \"displayName\": \"Virtual Network Subnet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"displayName\": \"Join Virtual Network\",\r\n \"description\": \"Joins a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"displayName\": \"Get Virtual Network Subnet\",\r\n \"description\": \"Gets a virtual network subnet definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"displayName\": \"Create or Update Virtual Network Subnet\",\r\n \"description\": \"Creates a virtual network subnet or updates an existing virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"displayName\": \"Delete Virtual Network Subnet\",\r\n \"description\": \"Deletes a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets/virtualMachines\",\r\n \"displayName\": \"Virtual Network Subnet Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Subnet Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/virtualMachines\",\r\n \"displayName\": \"Virtual Network Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"trafficManagerProfiles\",\r\n \"displayName\": \"Traffic Manager Profile\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"displayName\": \"Get Traffic Manager Profile\",\r\n \"description\": \"Get the Traffic Manager profile configuration. This includes DNS settings, traffic routing settings, endpoint monitoring settings, and the list of endpoints routed by this Traffic Manager profile.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"displayName\": \"Create or Update Traffic Manager Profile\",\r\n \"description\": \"Create a Traffic Manager profile, or modify the configuration of an existing Traffic Manager profile. This includes enabling or disabling a profile and modifying DNS settings, traffic routing settings, or endpoint monitoring settings. Endpoints routed by the Traffic Manager profile can be added, removed, enabled or disabled.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/delete\",\r\n \"displayName\": \"Delete Traffic Manager Profile\",\r\n \"description\": \"Delete the Traffic Manager profile. All settings associated with the Traffic Manager profile will be lost, and the profile can no longer be used to route traffic.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups\",\r\n \"displayName\": \"Network Security Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"displayName\": \"Get Network Security Group\",\r\n \"description\": \"Gets a network security group definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"displayName\": \"Create or Update Network Security Group\",\r\n \"description\": \"Creates a network security group or updates an existing network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"displayName\": \"Delete Network Security Group\",\r\n \"description\": \"Deletes a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"displayName\": \"Join Network Security Group\",\r\n \"description\": \"Joins a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Network Security Groups Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Network Security Groups Diagnostic Settings\",\r\n \"description\": \"Gets the Network Security Groups Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Network Security Groups diagnostic settings\",\r\n \"description\": \"Creates or updates the Network Security Groups diagnostic settings, this operation is supplimented by insghts resource provider.\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Network Security Groups Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Network Security Group Event Log Definitions\",\r\n \"description\": \"Gets the events for network security group\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"NetworkSecurityGroupEvent\",\r\n \"displayName\": \"Network Security Group Event\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"NetworkSecurityGroupRuleCounter\",\r\n \"displayName\": \"Network Security Group Rule Counter\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/defaultSecurityRules\",\r\n \"displayName\": \"Default Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"displayName\": \"Get Default Security Rule\",\r\n \"description\": \"Gets a default security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/securityRules\",\r\n \"displayName\": \"Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"displayName\": \"Get Security Rule\",\r\n \"description\": \"Gets a security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"displayName\": \"Create or Update Security Rule\",\r\n \"description\": \"Creates a security rule or updates an existing security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"displayName\": \"Delete Security Rule\",\r\n \"description\": \"Deletes a security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/read\",\r\n \"displayName\": \"Get Application Gateway\",\r\n \"description\": \"Gets an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/write\",\r\n \"displayName\": \"Create or Update Application Gateway\",\r\n \"description\": \"Creates an application gateway or updates an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/delete\",\r\n \"displayName\": \"Delete Application Gateway\",\r\n \"description\": \"Deletes an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"ApplicationGateway Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \">Gets the logs for Application Gateway\",\r\n \"description\": \"Gets the events for Application Gateway\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ApplicationGatewayAccessLog\",\r\n \"displayName\": \"Application Gateway Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/backendAddressPools\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Application Gateway Backend Address Pool\",\r\n \"description\": \"Joins an application gateway backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables\",\r\n \"displayName\": \"Route Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/read\",\r\n \"displayName\": \"Get Route Table\",\r\n \"description\": \"Gets a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/write\",\r\n \"displayName\": \"Create or Update Route Table\",\r\n \"description\": \"Creates a route table or Updates an existing rotue table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/delete\",\r\n \"displayName\": \"Delete Route Table\",\r\n \"description\": \"Deletes a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/join/action\",\r\n \"displayName\": \"Join Route Table\",\r\n \"description\": \"Joins a route table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables/routes\",\r\n \"displayName\": \"Route\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/read\",\r\n \"displayName\": \"Get Route\",\r\n \"description\": \"Gets a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/write\",\r\n \"displayName\": \"Create or Update Route\",\r\n \"description\": \"Creates a route or Updates an existing route\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/delete\",\r\n \"displayName\": \"Delete Route\",\r\n \"description\": \"Deletes a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operationResults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operationResults/read\",\r\n \"displayName\": \"Get Operation Result\",\r\n \"description\": \"Gets operation result of an async POST or DELETE operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/checkDnsNameAvailability\",\r\n \"displayName\": \"Dns Availability Check Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/checkDnsNameAvailability/read\",\r\n \"displayName\": \"Check Dns Name Availability\",\r\n \"description\": \"Checks if dns label is available at the specified location\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operations\",\r\n \"displayName\": \"Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operations/read\",\r\n \"displayName\": \"Get Operation Resource\",\r\n \"description\": \"Gets operation resource that represents status of an asynchronous operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/usage\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/usage/read\",\r\n \"displayName\": \"Get Usage Metric\",\r\n \"description\": \"Gets the resources usage metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Network\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Network\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Cache\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"redis\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/write\",\r\n \"displayName\": \"Manage Redis Cache (read-write)\",\r\n \"description\": \"Modify the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/read\",\r\n \"displayName\": \"Manage Redis Cache (read-only)\",\r\n \"description\": \"View the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/delete\",\r\n \"displayName\": \"Delete Redis Cache\",\r\n \"description\": \"Delete the entire Redis Cache\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/listKeys/action\",\r\n \"displayName\": \"View Redis Cache Access Keys\",\r\n \"description\": \"View the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Redis Cache Access Keys\",\r\n \"description\": \"Change the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"redis/metricdefinitions\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/metricdefinitions/Read\",\r\n \"displayName\": \"Microsoft.Cache Metric Definitions\",\r\n \"description\": \"Gets the available metrics for microsoft.cache\",\r\n \"origin\": null,\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"connectedclients\",\r\n \"displayName\": \"Connected Clients\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed\",\r\n \"displayName\": \"Total Operations\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits\",\r\n \"displayName\": \"Cache Hits\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses\",\r\n \"displayName\": \"Cache Misses\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands\",\r\n \"displayName\": \"Gets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands\",\r\n \"displayName\": \"Sets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys\",\r\n \"displayName\": \"Evicted Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys\",\r\n \"displayName\": \"Total Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys\",\r\n \"displayName\": \"Expired Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory\",\r\n \"displayName\": \"Used Memory\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss\",\r\n \"displayName\": \"Used Memory RSS\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad\",\r\n \"displayName\": \"Server Load\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite\",\r\n \"displayName\": \"Cache Write\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead\",\r\n \"displayName\": \"Cache Read\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients0\",\r\n \"displayName\": \"Connected Clients (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed0\",\r\n \"displayName\": \"Total Operations (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits0\",\r\n \"displayName\": \"Cache Hits (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses0\",\r\n \"displayName\": \"Cache Misses (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands0\",\r\n \"displayName\": \"Gets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands0\",\r\n \"displayName\": \"Sets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys0\",\r\n \"displayName\": \"Evicted Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys0\",\r\n \"displayName\": \"Total Keys (Node 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys0\",\r\n \"displayName\": \"Expired Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory0\",\r\n \"displayName\": \"Used Memory (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss0\",\r\n \"displayName\": \"Used Memory RSS (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad0\",\r\n \"displayName\": \"Server Load (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite0\",\r\n \"displayName\": \"Cache Write (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead0\",\r\n \"displayName\": \"Cache Read (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime0\",\r\n \"displayName\": \"CPU (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients1\",\r\n \"displayName\": \"Connected Clients (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed1\",\r\n \"displayName\": \"Total Operations (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits1\",\r\n \"displayName\": \"Cache Hits (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses1\",\r\n \"displayName\": \"Cache Misses (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands1\",\r\n \"displayName\": \"Gets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands1\",\r\n \"displayName\": \"Sets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys1\",\r\n \"displayName\": \"Evicted Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys1\",\r\n \"displayName\": \"Total Keys (Node 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys1\",\r\n \"displayName\": \"Expired Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory1\",\r\n \"displayName\": \"Used Memory (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss1\",\r\n \"displayName\": \"Used Memory RSS (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad1\",\r\n \"displayName\": \"Server Load (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite1\",\r\n \"displayName\": \"Cache Write (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead1\",\r\n \"displayName\": \"Cache Read (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime1\",\r\n \"displayName\": \"CPU (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients2\",\r\n \"displayName\": \"Connected Clients (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed2\",\r\n \"displayName\": \"Total Operations (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits2\",\r\n \"displayName\": \"Cache Hits (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses2\",\r\n \"displayName\": \"Cache Misses (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands2\",\r\n \"displayName\": \"Gets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands2\",\r\n \"displayName\": \"Sets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys2\",\r\n \"displayName\": \"Evicted Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys2\",\r\n \"displayName\": \"Total Keys (Node 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys2\",\r\n \"displayName\": \"Expired Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory2\",\r\n \"displayName\": \"Used Memory (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss2\",\r\n \"displayName\": \"Used Memory RSS (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad2\",\r\n \"displayName\": \"Server Load (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite2\",\r\n \"displayName\": \"Cache Write (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead2\",\r\n \"displayName\": \"Cache Read (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime2\",\r\n \"displayName\": \"CPU (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients3\",\r\n \"displayName\": \"Connected Clients (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed3\",\r\n \"displayName\": \"Total Operations (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits3\",\r\n \"displayName\": \"Cache Hits (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses3\",\r\n \"displayName\": \"Cache Misses (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands3\",\r\n \"displayName\": \"Gets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands3\",\r\n \"displayName\": \"Sets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys3\",\r\n \"displayName\": \"Evicted Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys3\",\r\n \"displayName\": \"Total Keys (Node 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys3\",\r\n \"displayName\": \"Expired Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory3\",\r\n \"displayName\": \"Used Memory (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss3\",\r\n \"displayName\": \"Used Memory RSS (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad3\",\r\n \"displayName\": \"Server Load (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite3\",\r\n \"displayName\": \"Cache Write (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead3\",\r\n \"displayName\": \"Cache Read (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime3\",\r\n \"displayName\": \"CPU (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients4\",\r\n \"displayName\": \"Connected Clients (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed4\",\r\n \"displayName\": \"Total Operations (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits4\",\r\n \"displayName\": \"Cache Hits (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses4\",\r\n \"displayName\": \"Cache Misses (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands4\",\r\n \"displayName\": \"Gets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands4\",\r\n \"displayName\": \"Sets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys4\",\r\n \"displayName\": \"Evicted Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys4\",\r\n \"displayName\": \"Total Keys (Node 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys4\",\r\n \"displayName\": \"Expired Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory4\",\r\n \"displayName\": \"Used Memory (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss4\",\r\n \"displayName\": \"Used Memory RSS (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad4\",\r\n \"displayName\": \"Server Load (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite4\",\r\n \"displayName\": \"Cache Write (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead4\",\r\n \"displayName\": \"Cache Read (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime4\",\r\n \"displayName\": \"CPU (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients5\",\r\n \"displayName\": \"Connected Clients (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed5\",\r\n \"displayName\": \"Total Operations (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits5\",\r\n \"displayName\": \"Cache Hits (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses5\",\r\n \"displayName\": \"Cache Misses (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands5\",\r\n \"displayName\": \"Gets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands5\",\r\n \"displayName\": \"Sets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys5\",\r\n \"displayName\": \"Evicted Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys5\",\r\n \"displayName\": \"Total Keys (Node 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys5\",\r\n \"displayName\": \"Expired Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory5\",\r\n \"displayName\": \"Used Memory (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss5\",\r\n \"displayName\": \"Used Memory RSS (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad5\",\r\n \"displayName\": \"Server Load (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite5\",\r\n \"displayName\": \"Cache Write (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead5\",\r\n \"displayName\": \"Cache Read (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime5\",\r\n \"displayName\": \"CPU (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients6\",\r\n \"displayName\": \"Connected Clients (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed6\",\r\n \"displayName\": \"Total Operations (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits6\",\r\n \"displayName\": \"Cache Hits (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses6\",\r\n \"displayName\": \"Cache Misses (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands6\",\r\n \"displayName\": \"Gets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands6\",\r\n \"displayName\": \"Sets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys6\",\r\n \"displayName\": \"Evicted Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys6\",\r\n \"displayName\": \"Total Keys (Node 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys6\",\r\n \"displayName\": \"Expired Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory6\",\r\n \"displayName\": \"Used Memory (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss6\",\r\n \"displayName\": \"Used Memory RSS (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad6\",\r\n \"displayName\": \"Server Load (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite6\",\r\n \"displayName\": \"Cache Write (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead6\",\r\n \"displayName\": \"Cache Read (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime6\",\r\n \"displayName\": \"CPU (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients7\",\r\n \"displayName\": \"Connected Clients (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed7\",\r\n \"displayName\": \"Total Operations (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits7\",\r\n \"displayName\": \"Cache Hits (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses7\",\r\n \"displayName\": \"Cache Misses (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands7\",\r\n \"displayName\": \"Gets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands7\",\r\n \"displayName\": \"Sets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys7\",\r\n \"displayName\": \"Evicted Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys7\",\r\n \"displayName\": \"Total Keys (Node 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys7\",\r\n \"displayName\": \"Expired Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory7\",\r\n \"displayName\": \"Used Memory (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss7\",\r\n \"displayName\": \"Used Memory RSS (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad7\",\r\n \"displayName\": \"Server Load (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite7\",\r\n \"displayName\": \"Cache Write (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead7\",\r\n \"displayName\": \"Cache Read (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime7\",\r\n \"displayName\": \"CPU (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients8\",\r\n \"displayName\": \"Connected Clients (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed8\",\r\n \"displayName\": \"Total Operations (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits8\",\r\n \"displayName\": \"Cache Hits (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses8\",\r\n \"displayName\": \"Cache Misses (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands8\",\r\n \"displayName\": \"Gets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands8\",\r\n \"displayName\": \"Sets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys8\",\r\n \"displayName\": \"Evicted Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys8\",\r\n \"displayName\": \"Total Keys (Node 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys8\",\r\n \"displayName\": \"Expired Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory8\",\r\n \"displayName\": \"Used Memory (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss8\",\r\n \"displayName\": \"Used Memory RSS (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad8\",\r\n \"displayName\": \"Server Load (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite8\",\r\n \"displayName\": \"Cache Write (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead8\",\r\n \"displayName\": \"Cache Read (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime8\",\r\n \"displayName\": \"CPU (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients9\",\r\n \"displayName\": \"Connected Clients (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed9\",\r\n \"displayName\": \"Total Operations (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits9\",\r\n \"displayName\": \"Cache Hits (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses9\",\r\n \"displayName\": \"Cache Misses (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands9\",\r\n \"displayName\": \"Gets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands9\",\r\n \"displayName\": \"Sets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys9\",\r\n \"displayName\": \"Evicted Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys9\",\r\n \"displayName\": \"Total Keys (Node 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys9\",\r\n \"displayName\": \"Expired Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory9\",\r\n \"displayName\": \"Used Memory (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss9\",\r\n \"displayName\": \"Used Memory RSS (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad9\",\r\n \"displayName\": \"Server Load (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite9\",\r\n \"displayName\": \"Cache Write (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead9\",\r\n \"displayName\": \"Cache Read (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime9\",\r\n \"displayName\": \"CPU (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cache\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cache\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft.BingMaps\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/updateCommunicationPreference/action\",\r\n \"displayName\": \"Update Communication Preferences\",\r\n \"description\": \"Updates the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/listCommunicationPreference/action\",\r\n \"displayName\": \"List Communication Preferences\",\r\n \"description\": \"Gets the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"mapApis\",\r\n \"displayName\": \"mapApis\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Gets the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/write\",\r\n \"displayName\": \"Write\",\r\n \"description\": \"Updates the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Deletes the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Key\",\r\n \"description\": \"Regenerate key(s) for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/listSecrets/action\",\r\n \"displayName\": \"List Secrets\",\r\n \"description\": \"List the secrets for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BingMaps\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BingMaps\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/checkNameAvailability/action\",\r\n \"displayName\": \"Check Service Name Availability\",\r\n \"description\": \"Checks availability of the service name.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"metricDefinitions\",\r\n \"displayName\": \"The metric definitions for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/metricDefinitions/read\",\r\n \"displayName\": \"Read search service metric definitions\",\r\n \"description\": \"Gets the available metrics for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": [\r\n {\r\n \"name\": \"Latency\",\r\n \"displayName\": \"Latency\",\r\n \"displayDescription\": \"Average latency for the search service\",\r\n \"unit\": \"Second\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"diagnosticSettings\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diganostic setting read for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/write\",\r\n \"displayName\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diganostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"logDefinitions\",\r\n \"displayName\": \"The log definition for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/logDefinitions/read\",\r\n \"displayName\": \"Read search service log definitions\",\r\n \"description\": \"Gets the available logs for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": [\r\n {\r\n \"name\": \"OperationLogs\",\r\n \"displayName\": \"Operation Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/write\",\r\n \"displayName\": \"Set Search Service\",\r\n \"description\": \"Creates or updates the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/read\",\r\n \"displayName\": \"Get Search Service\",\r\n \"description\": \"Reads the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/delete\",\r\n \"displayName\": \"Delete Search Service\",\r\n \"description\": \"Deletes the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/start/action\",\r\n \"displayName\": \"Start Search Service\",\r\n \"description\": \"Starts the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/stop/action\",\r\n \"displayName\": \"Stop Search Service\",\r\n \"description\": \"Stops the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listAdminKeys/action\",\r\n \"displayName\": \"Get Admin Key\",\r\n \"description\": \"Reads the admin keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/regenerateAdminKey/action\",\r\n \"displayName\": \"Regenerate Admin Key\",\r\n \"description\": \"Regenerates the admin key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/action\",\r\n \"displayName\": \"Create Query Key\",\r\n \"description\": \"Creates the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/createQueryKey\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/delete\",\r\n \"displayName\": \"Delete Query Key\",\r\n \"description\": \"Deletes the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/listQueryKeys\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listQueryKeys/read\",\r\n \"displayName\": \"Get Query Key\",\r\n \"description\": \"Reads the query keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Search\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Search\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicStorage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/checkStorageAccountAvailability/action\",\r\n \"displayName\": \"Check Storage Account Availability\",\r\n \"description\": \"Checks for the availability of a storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"displayName\": \"Get The Storage Account\",\r\n \"description\": \"Return the storage account with the given account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/write\",\r\n \"displayName\": \"Add Storage Account\",\r\n \"description\": \"Adds a new storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Delete the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"displayName\": \"List Access Keys\",\r\n \"description\": \"Lists the access keys for the storage accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Access Keys\",\r\n \"description\": \"Regenerates the existing access keys for the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/delete\",\r\n \"displayName\": \"Delete Storage Account Image\",\r\n \"description\": \"Deletes a given storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/delete\",\r\n \"displayName\": \"Delete Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/read\",\r\n \"displayName\": \"Get Available Services\",\r\n \"description\": \"Get the available services.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicStorage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicStorage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Monitoring Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"AlertRules\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Write\",\r\n \"displayName\": \"Alert Rule write\",\r\n \"description\": \"Writing to an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Delete\",\r\n \"displayName\": \"Alert Rule delete\",\r\n \"description\": \"Deleting an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Read\",\r\n \"displayName\": \"Alert Rule read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"displayName\": \"Alert Rule activated\",\r\n \"description\": \"Alert Rule activated\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"displayName\": \"Alert Rule resolved\",\r\n \"description\": \"Alert Rule resolved\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AlertRules/Incidents\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"displayName\": \"Alert Rule Incidents read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/values\",\r\n \"displayName\": \"Events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"displayName\": \"Event types management values read\",\r\n \"description\": \"Read management event type values\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/digestevents\",\r\n \"displayName\": \"Digest events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/digestevents/Read\",\r\n \"displayName\": \"Event types management digest read\",\r\n \"description\": \"Read management event type digest\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AutoscaleSettings\",\r\n \"displayName\": \"Autoscale\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Write\",\r\n \"displayName\": \"Autoscale Setting write\",\r\n \"description\": \"Writing to an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Delete\",\r\n \"displayName\": \"Autoscale Setting delete\",\r\n \"description\": \"Deleting an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Read\",\r\n \"displayName\": \"Autoscale Setting read\",\r\n \"description\": \"Reading an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaleup/Action\",\r\n \"displayName\": \"Autoscale scale up operation\",\r\n \"description\": \"Autoscale scale up operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaledown/Action\",\r\n \"displayName\": \"Autoscale scale down operation\",\r\n \"description\": \"Autoscale scale down operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.insights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.insights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Operational Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"linkTargets\",\r\n \"displayName\": \"Unlinked Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/linkTargets/read\",\r\n \"displayName\": \"List Unlinked Accounts\",\r\n \"description\": \"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces\",\r\n \"displayName\": \"Workspace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"displayName\": \"Create Workspace\",\r\n \"description\": \"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"displayName\": \"Get Workspace\",\r\n \"description\": \"Gets an existing workspace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/delete\",\r\n \"displayName\": \"Delete Workspace\",\r\n \"description\": \"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action\",\r\n \"displayName\": \"Generates Registration Certificate for Workspace.\",\r\n \"description\": \"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"displayName\": \"List Workspace Shared Keys\",\r\n \"description\": \"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"displayName\": \"Search Workspace Data\",\r\n \"description\": \"Executes a search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/managementGroups\",\r\n \"displayName\": \"Management Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/managementGroups/read\",\r\n \"displayName\": \"Get Management Groups for Workspace\",\r\n \"description\": \"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/schema\",\r\n \"displayName\": \"Search Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/schema/read\",\r\n \"displayName\": \"Get Search Schema\",\r\n \"description\": \"Gets the search schema for the workspace. Search schema includes the exposed fields and their types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/usages\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/usages/read\",\r\n \"displayName\": \"Get Usage Data for Workspace\",\r\n \"description\": \"Gets usage data for a workspace including the amount of data read by the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/savedSearches\",\r\n \"displayName\": \"Saved Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"displayName\": \"Get Saved Search\",\r\n \"description\": \"Gets a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/write\",\r\n \"displayName\": \"Create Saved Search\",\r\n \"description\": \"Creates a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/delete\",\r\n \"displayName\": \"Delete Saved Search\",\r\n \"description\": \"Deletes a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/storageinsightconfigs\",\r\n \"displayName\": \"Storage Insight Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write\",\r\n \"displayName\": \"Create Storage Configuration\",\r\n \"description\": \"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read\",\r\n \"displayName\": \"Get Storage Configuration\",\r\n \"description\": \"Gets a storage configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete\",\r\n \"displayName\": \"Delete Storage Configuration\",\r\n \"description\": \"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.OperationalInsights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.OperationalInsights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure Notification Hub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/CheckNamespaceAvailability/action\",\r\n \"displayName\": \"Check Namespace name availability.\",\r\n \"description\": \"Checks whether or not a given Namespace resource name is available within the NotificationHub service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"Namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/CheckNotificationHubAvailability/action\",\r\n \"displayName\": \"Check NotificationHub name availability.\",\r\n \"description\": \"Checks whether or not a given NotificationHub name is available inside a Namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/write\",\r\n \"displayName\": \"Create or Update Notification Hub \",\r\n \"description\": \"Create a Notification Hub and Update its properties. Its properties mainly include PNS Credentials. Authorization Rules and TTL\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/read\",\r\n \"displayName\": \"Get Notification Hub\",\r\n \"description\": \"Get list of Notification Hub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/Delete\",\r\n \"displayName\": \"Delete Notification Hub\",\r\n \"description\": \"Delete Notification Hub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/action\",\r\n \"displayName\": \"Get Notification Hub Authorization Rules\",\r\n \"description\": \"Get the list of Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/pnsCredentials/action\",\r\n \"displayName\": \"Get Notification Hub PNS Credentials\",\r\n \"description\": \"Get All Notification Hub PNS Credentials. This includes, WNS, MPNS, APNS, GCM and Baidu credentials\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs/authorizationRules\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Notification hub Authorization Rule\",\r\n \"description\": \"Create Notification Hub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete Notification Hub Authorization Rules\",\r\n \"description\": \"Delete Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Notification Hub Listkeys\",\r\n \"description\": \"Get the Connection String to the Notification Hub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.NotificationHubs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.NotificationHubs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Scheduler\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"jobcollections\",\r\n \"displayName\": \"Job Collection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/read\",\r\n \"displayName\": \"Get Job Collection\",\r\n \"description\": \"Get Job Collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/write\",\r\n \"displayName\": \"Create Job Collection\",\r\n \"description\": \"Creates or updates job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/delete\",\r\n \"displayName\": \"Delete Job Collection\",\r\n \"description\": \"Deletes job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/enable/action\",\r\n \"displayName\": \"Enable Job Collection\",\r\n \"description\": \"Enables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/disable/action\",\r\n \"displayName\": \"Disable Job Collection\",\r\n \"description\": \"Disables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs\",\r\n \"displayName\": \"Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/read\",\r\n \"displayName\": \"Get Job\",\r\n \"description\": \"Gets job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/write\",\r\n \"displayName\": \"Create Job\",\r\n \"description\": \"Creates or updates job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/delete\",\r\n \"displayName\": \"Delete Job\",\r\n \"description\": \"Deletes job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/run/action\",\r\n \"displayName\": \"Run Job\",\r\n \"description\": \"Runs job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs/jobhistories\",\r\n \"displayName\": \"Job History\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/jobhistories/read\",\r\n \"displayName\": \"Get Job History\",\r\n \"description\": \"Gets job history.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Scheduler\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Scheduler\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Data Factory\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"datafactories\",\r\n \"displayName\": \"Data Factory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/read\",\r\n \"displayName\": \"Read Data Factory\",\r\n \"description\": \"Reads Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/write\",\r\n \"displayName\": \"Create or Update any Data Factory.\",\r\n \"description\": \"Create or Update Data Factory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/delete\",\r\n \"displayName\": \"Delete Data Factory\",\r\n \"description\": \"Deletes Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/datapipelines\",\r\n \"displayName\": \"Pipeline\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/read\",\r\n \"displayName\": \"Read Pipeline\",\r\n \"description\": \"Reads Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/delete\",\r\n \"displayName\": \"Delete Pipeline\",\r\n \"description\": \"Deletes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/pause/action\",\r\n \"displayName\": \"Puase Pipeline\",\r\n \"description\": \"Pauses Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/resume/action\",\r\n \"displayName\": \"Resume Pipeline\",\r\n \"description\": \"Resumes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/update/action\",\r\n \"displayName\": \"Update Pipeline\",\r\n \"description\": \"Updates Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/write\",\r\n \"displayName\": \"Create or Update any Pipeline.\",\r\n \"description\": \"Create or Update Pipeline\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/linkedServices\",\r\n \"displayName\": \"Linked service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/read\",\r\n \"displayName\": \"Read Linked service\",\r\n \"description\": \"Reads Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/delete\",\r\n \"displayName\": \"Delete Linked service\",\r\n \"description\": \"Deletes Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/write\",\r\n \"displayName\": \"Create or Update any Linked service.\",\r\n \"description\": \"Create or Update Linked service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/{resourceTypeName:regex(^(tables|datasets)$)}\",\r\n \"displayName\": \"Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/read\",\r\n \"displayName\": \"Read Table\",\r\n \"description\": \"Reads Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/delete\",\r\n \"displayName\": \"Delete Table\",\r\n \"description\": \"Deletes Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/write\",\r\n \"displayName\": \"Create or Update any Table.\",\r\n \"description\": \"Create or Update Table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataFactory\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataFactory\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Web Apps\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"sites\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/Read\",\r\n \"displayName\": \"Get Web Apps\",\r\n \"description\": \"Get the list of Web Apps.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Write\",\r\n \"displayName\": \"Create or Update Web App\",\r\n \"description\": \"Create a new Web App or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Delete\",\r\n \"displayName\": \"Delete Web App\",\r\n \"description\": \"Delete an existing Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App\",\r\n \"description\": \"List publishing profile xml for Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/restart/Action\",\r\n \"displayName\": \"Restart Web App\",\r\n \"description\": \"Restart Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/start/Action\",\r\n \"displayName\": \"Start Web App\",\r\n \"description\": \"Start Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/stop/Action\",\r\n \"displayName\": \"Stop Web App\",\r\n \"description\": \"Stop Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App with a slot\",\r\n \"description\": \"Swap Web App with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/Write\",\r\n \"displayName\": \"Create Web App Backup\",\r\n \"description\": \"Create new web app backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup/config\",\r\n \"displayName\": \"Web App Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Read\",\r\n \"displayName\": \"List Web App Backup Configurations\",\r\n \"description\": \"List all Web App backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Write\",\r\n \"displayName\": \"Update Web App Backup Configuration\",\r\n \"description\": \"Update Web App backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slotsdiffs\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Write\",\r\n \"displayName\": \"Create or Update Web App Slot\",\r\n \"description\": \"Create a new Web App Slot or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Delete\",\r\n \"displayName\": \"Delete Web App Slot\",\r\n \"description\": \"Delete an existing Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App Slot\",\r\n \"description\": \"List publishing profile xml for Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"displayName\": \"Restart Web App Slot\",\r\n \"description\": \"Restart Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/start/Action\",\r\n \"displayName\": \"Start Web App Slot\",\r\n \"description\": \"Start Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"displayName\": \"Stop Web App Slot\",\r\n \"description\": \"Stop Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App Slot with another slot\",\r\n \"description\": \"Swap Web App Slot with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Action\",\r\n \"displayName\": \"List Web App Slot Backup Configurations\",\r\n \"description\": \"List all Web App Slot backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/Write\",\r\n \"displayName\": \"Create Web App Slot Backup\",\r\n \"description\": \"Create new Web App Slot backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup/config\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Write\",\r\n \"displayName\": \"Update Web App Slot Backup Configuration\",\r\n \"description\": \"Update Web App Slot backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/slotsdiffs\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/appsettings\",\r\n \"displayName\": \"Web App Slot AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's AppSettings\",\r\n \"description\": \"Get Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App Slot's AppSettings\",\r\n \"description\": \"Update Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/logs\",\r\n \"displayName\": \"Web App Slot Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Read\",\r\n \"displayName\": \"Get Web App Slot's Logs Config\",\r\n \"description\": \"Get Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Write\",\r\n \"displayName\": \"Update Web App Slot's Logs Config\",\r\n \"description\": \"Update Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/publishingcredentials\",\r\n \"displayName\": \"Web App Slot Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App Slot's publishing credentials\",\r\n \"description\": \"List Web App Slot's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/connectionstrings\",\r\n \"displayName\": \"Web App Slot Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's connection strings\",\r\n \"description\": \"Get Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App Slot's connection strings\",\r\n \"description\": \"Update Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/web\",\r\n \"displayName\": \"Web App Slot Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Read\",\r\n \"displayName\": \"Get Web App Slot's configuration\",\r\n \"description\": \"Get Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Write\",\r\n \"displayName\": \"Update Web App Slot's configuration\",\r\n \"description\": \"Update Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/metadata\",\r\n \"displayName\": \"Web App Slot Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App Slot's metadata\",\r\n \"description\": \"List Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/Write\",\r\n \"displayName\": \"Update Web App Slot's metadata\",\r\n \"description\": \"Update Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/sourcecontrols/web\",\r\n \"displayName\": \"Web App Slot Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App Slot's source control configuration\",\r\n \"description\": \"Get Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App Slot's source control configuration\",\r\n \"description\": \"Update Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App Slot's source control configuration\",\r\n \"description\": \"Delete Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/restore\",\r\n \"displayName\": \"Web App Slot Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restore/Read\",\r\n \"displayName\": \"List Web App Slot Backups\",\r\n \"description\": \"List all backups for a Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/appsettings\",\r\n \"displayName\": \"Web App AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App's AppSettings\",\r\n \"description\": \"Get Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App's AppSettings\",\r\n \"description\": \"Update Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/logs\",\r\n \"displayName\": \"Web App Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Read\",\r\n \"displayName\": \"Get Web App's Logs Config\",\r\n \"description\": \"Get Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Write\",\r\n \"displayName\": \"Update Web App's Logs Config\",\r\n \"description\": \"Update Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/publishingcredentials\",\r\n \"displayName\": \"Web App Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App's publishing credentials\",\r\n \"description\": \"List Web App's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/connectionstrings\",\r\n \"displayName\": \"Web App Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App's connection strings\",\r\n \"description\": \"Get Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App's connection strings\",\r\n \"description\": \"Update Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/web\",\r\n \"displayName\": \"Web App Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Read\",\r\n \"displayName\": \"Get Web App's configuration\",\r\n \"description\": \"Get Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Write\",\r\n \"displayName\": \"Update Web App's configuration\",\r\n \"description\": \"Update Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/metadata\",\r\n \"displayName\": \"Web App Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App's metadata\",\r\n \"description\": \"List Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/Write\",\r\n \"displayName\": \"Update Web App's metadata\",\r\n \"description\": \"Update Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/sourcecontrols/web\",\r\n \"displayName\": \"Web App Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App's source control configuration\",\r\n \"description\": \"Get Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App's source control configuration\",\r\n \"description\": \"Update Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App's source control configuration\",\r\n \"description\": \"Delete Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/restore\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/restore/Read\",\r\n \"displayName\": \"List Web App Backups\",\r\n \"description\": \"List all backups for a Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverfarms\",\r\n \"displayName\": \"App Service Plan\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Read\",\r\n \"displayName\": \"Get App Service Plans\",\r\n \"description\": \"Get the list of App Service Plans.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Write\",\r\n \"displayName\": \"Create or Update App Service Plans\",\r\n \"description\": \"Create a new App Service Plan or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Delete\",\r\n \"displayName\": \"Delete App Service Plan\",\r\n \"description\": \"Delete an existing App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/restartSites/Action\",\r\n \"displayName\": \"Restart Web Apps\",\r\n \"description\": \"Restart Web Apps in an App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Read\",\r\n \"displayName\": \"Get Certificates\",\r\n \"description\": \"Get the list of certificates.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Write\",\r\n \"displayName\": \"Add or Update Certificate\",\r\n \"description\": \"Add a new certificate or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Delete\",\r\n \"displayName\": \"Delete Certificate\",\r\n \"description\": \"Delete an existing certificate.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Web\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Web\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"vaults\",\r\n \"displayName\": \"Key Vault\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/read\",\r\n \"displayName\": \"View Key Vault\",\r\n \"description\": \"View the properties of a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/write\",\r\n \"displayName\": \"Update Key Vault\",\r\n \"description\": \"Create a new key vault or update the properties of an existing key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/delete\",\r\n \"displayName\": \"Delete Key Vault\",\r\n \"description\": \"Delete a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"displayName\": \"Use Vault for Virtual Machines\",\r\n \"description\": \"Enables access to secrets in a key vault when deploying a virtual machine\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Key Vault Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Read\",\r\n \"displayName\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Write\",\r\n \"displayName\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Key Vault Log Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Read log definition\",\r\n \"description\": \"Gets the available logs for Key Vault\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AuditEvent\",\r\n \"displayName\": \"Audit Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/secrets\",\r\n \"displayName\": \"Secret\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"displayName\": \"View Secret Properties\",\r\n \"description\": \"View the properties of a secret, but not its value\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"displayName\": \"Update Secret\",\r\n \"description\": \"Create a new secret or update the value of an existing secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/delete\",\r\n \"displayName\": \"Delete Secret\",\r\n \"description\": \"Delete a secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.KeyVault\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.KeyVault\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft AppService\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"appidentities\",\r\n \"displayName\": \"App Identity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Read\",\r\n \"displayName\": \"Get App Identity\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Write\",\r\n \"displayName\": \"Create App Identity\",\r\n \"description\": \"Creates a new App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Delete\",\r\n \"displayName\": \"Delete App Identity\",\r\n \"description\": \"Deletes an existing App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deploymenttemplates\",\r\n \"displayName\": \"Deployment Template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/listMetadata/Action\",\r\n \"displayName\": \"List UI Metadata\",\r\n \"description\": \"Lists UI Metadata associated with the API App package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/generate/Action\",\r\n \"displayName\": \"Generate Deployment Template\",\r\n \"description\": \"Returns a Deployment Template to provision API App instance(s).\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways\",\r\n \"displayName\": \"Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Read\",\r\n \"displayName\": \"Get Gateway\",\r\n \"description\": \"Returns the Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Write\",\r\n \"displayName\": \"Create or Update Gateway\",\r\n \"description\": \"Creates a new Gateway or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Delete\",\r\n \"displayName\": \"Delete Gateway\",\r\n \"description\": \"Deletes an existing Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listLoginUris/Action\",\r\n \"displayName\": \"List Login URIs\",\r\n \"description\": \"Populates token store and returns OAuth login URIs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listKeys/Action\",\r\n \"displayName\": \"List Gateway Secrets\",\r\n \"description\": \"Returns Gateway secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/tokens\",\r\n \"displayName\": \"Zumo Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/tokens/Write\",\r\n \"displayName\": \"Create Zumo Token\",\r\n \"description\": \"Creates a new Zumo Token with the given name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/registrations\",\r\n \"displayName\": \"Gateway Registration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Read\",\r\n \"displayName\": \"Get Registered Resource\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Write\",\r\n \"displayName\": \"Register Resource\",\r\n \"description\": \"Registers a resource (web site) with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Delete\",\r\n \"displayName\": \"Unregister Resource\",\r\n \"description\": \"Unregisters a resource (web site) from the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps\",\r\n \"displayName\": \"API App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Read\",\r\n \"displayName\": \"Get API App\",\r\n \"description\": \"Returns the API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Write\",\r\n \"displayName\": \"Create or Update API App\",\r\n \"description\": \"Creates a new API App or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Delete\",\r\n \"displayName\": \"Delete API App\",\r\n \"description\": \"Deletes an existing API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listStatus/Action\",\r\n \"displayName\": \"Get API App Status\",\r\n \"description\": \"Returns API App status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listKeys/Action\",\r\n \"displayName\": \"List API App Secrets\",\r\n \"description\": \"Returns API App secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps/apidefinitions\",\r\n \"displayName\": \"API Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/apidefinitions/Read\",\r\n \"displayName\": \"Get API App's API Definition\",\r\n \"description\": \"Returns API App's API definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.AppService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.AppService\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DevTest Labs\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"labs\",\r\n \"displayName\": \"DevTest Labs\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/read\",\r\n \"displayName\": \"Read DevTest Labs.\",\r\n \"description\": \"Read DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/write\",\r\n \"displayName\": \"Add or modify DevTest Labs.\",\r\n \"description\": \"Add or modify DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/delete\",\r\n \"displayName\": \"Delete DevTest Labs.\",\r\n \"description\": \"Delete DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"displayName\": \"Create an environment.\",\r\n \"description\": \"Create virtual machines or environments in a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/listVhds/action\",\r\n \"displayName\": \"List VHDs.\",\r\n \"description\": \"List disk images available for VM template creation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/labStats/action\",\r\n \"displayName\": \"Get Lab Status\",\r\n \"description\": \"Get the number of environments and the limit of environments for the lab. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/getUploadUri/action\",\r\n \"displayName\": \"Get Image Upload URI.\",\r\n \"description\": \"Get a URI for uploading custom disk images to a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/artifactSources\",\r\n \"displayName\": \"Artifact Sources\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/read\",\r\n \"displayName\": \"Read Artifact Sources.\",\r\n \"description\": \"Read Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/write\",\r\n \"displayName\": \"Add or modify Artifact Sources.\",\r\n \"description\": \"Add or modify Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/delete\",\r\n \"displayName\": \"Delete Artifact Sources.\",\r\n \"description\": \"Delete Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/policies\",\r\n \"displayName\": \"Policies\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/read\",\r\n \"displayName\": \"Read Policies.\",\r\n \"description\": \"Read Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/write\",\r\n \"displayName\": \"Add or modify Policies.\",\r\n \"description\": \"Add or modify Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/delete\",\r\n \"displayName\": \"Delete Policies.\",\r\n \"description\": \"Delete Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/vmtemplates\",\r\n \"displayName\": \"VM Templates\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/read\",\r\n \"displayName\": \"Read VM Templates.\",\r\n \"description\": \"Read VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/write\",\r\n \"displayName\": \"Add or modify VM Templates.\",\r\n \"description\": \"Add or modify VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/delete\",\r\n \"displayName\": \"Delete VM Templates.\",\r\n \"description\": \"Delete VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"environments\",\r\n \"displayName\": \"Environments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/read\",\r\n \"displayName\": \"Read Environments.\",\r\n \"description\": \"Read Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/write\",\r\n \"displayName\": \"Add or modify Environments.\",\r\n \"description\": \"Add or modify Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/delete\",\r\n \"displayName\": \"Delete Environments.\",\r\n \"description\": \"Delete Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DevTestLab\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DevTestLab\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"displayName\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"displayName\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"displayName\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"displayName\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventHubs/consumergroups\",\r\n \"displayName\": \"ConsumerGroup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"displayName\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"displayName\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"displayName\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs/authorizationRules\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get EventHub Listkeys\",\r\n \"description\": \"Get the Connection String to EventHub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.EventHub\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.EventHub\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services (LCS)\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"lcsprojects\",\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services project\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/read\",\r\n \"displayName\": \"Read LCS projects\",\r\n \"description\": \"Display Microsoft Dynamics Lifecycle Services projects that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/write\",\r\n \"displayName\": \"Create and update LCS projects\",\r\n \"description\": \"Create and update Microsoft Dynamics Lifecycle Services projects that belong to the user. Only the name and description properties can be updated. The subscription and location associated with the project cannot be updated after creation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/delete\",\r\n \"displayName\": \"Delete LCS projects\",\r\n \"description\": \"Delete Microsoft Dynamics Lifecycle Services projects that belong to the user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"lcsprojects/clouddeployments\",\r\n \"displayName\": \"Microsoft Dynamics AX 2012 deployments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/read\",\r\n \"displayName\": \"Read Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Display Microsoft Dynamics AX 2012 R3 Evaluation deployments in a Microsoft Dynamics Lifecycle Services project that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/write\",\r\n \"displayName\": \"Create Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Create Microsoft Dynamics AX 2012 R3 Evaluation deployment in a Microsoft Dynamics Lifecycle Services project that belong to a user. Deployments can be managed from Azure management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DynamicsLcs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DynamicsLcs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Resources\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"marketplace\",\r\n \"displayName\": \"Marketplace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/marketplace/purchase/action\",\r\n \"displayName\": \"Purchase Resource\",\r\n \"description\": \"Purchases a resource from the marketplace.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions\",\r\n \"displayName\": \"Subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/read\",\r\n \"displayName\": \"Get Subscriptions\",\r\n \"description\": \"Gets the list of subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/providers\",\r\n \"displayName\": \"Resource Providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"displayName\": \"Get Resource Providers\",\r\n \"description\": \"Gets or lists resource providers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames\",\r\n \"displayName\": \"Subscription Tag\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/read\",\r\n \"displayName\": \"Get Subscription Tag\",\r\n \"description\": \"Gets or lists subscription tags.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/write\",\r\n \"displayName\": \"Add Subscription Tag\",\r\n \"description\": \"Adds a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/delete\",\r\n \"displayName\": \"Delete Subscription Tag\",\r\n \"description\": \"Deletes a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames/tagValues\",\r\n \"displayName\": \"Subscription Tag Value\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/read\",\r\n \"displayName\": \"Get Subscription Tag Value\",\r\n \"description\": \"Gets or lists subscription tag values.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/write\",\r\n \"displayName\": \"Add Subscription Tag Value\",\r\n \"description\": \"Adds a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/delete\",\r\n \"displayName\": \"Delete Subscription Tag Value\",\r\n \"description\": \"Deletes a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resources\",\r\n \"displayName\": \"Subscription Resource\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"displayName\": \"Get Subscription Resources\",\r\n \"description\": \"Gets resources of a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resourceGroups\",\r\n \"displayName\": \"Resource Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"displayName\": \"Get Resource Group\",\r\n \"description\": \"Gets or lists resource groups.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"displayName\": \"Create Resource Group\",\r\n \"description\": \"Creates or updates a resource group.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"displayName\": \"Delete Resource Group\",\r\n \"description\": \"Deletes a resource group and all its resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"displayName\": \"Move Resource Group Resources\",\r\n \"description\": \"Moves resources from one resource group to another.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/locations\",\r\n \"displayName\": \"Location\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/locations/read\",\r\n \"displayName\": \"Get Locations\",\r\n \"description\": \"Gets the list of locations supported.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"links\",\r\n \"displayName\": \"Resource Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/links/read\",\r\n \"displayName\": \"Get Resource Link\",\r\n \"description\": \"Gets or lists resource links.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/write\",\r\n \"displayName\": \"Create Resource Link\",\r\n \"description\": \"Creates or updates a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/delete\",\r\n \"displayName\": \"Delete Resource Link\",\r\n \"description\": \"Deletes a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"tenants\",\r\n \"displayName\": \"Tenant\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/tenants/read\",\r\n \"displayName\": \"Get Tenants\",\r\n \"description\": \"Gets the list of tenants.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments\",\r\n \"displayName\": \"Deployment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/read\",\r\n \"displayName\": \"Get Deployment\",\r\n \"description\": \"Gets or lists deployments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/write\",\r\n \"displayName\": \"Create Deployment\",\r\n \"description\": \"Creates or updates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/delete\",\r\n \"displayName\": \"Delete Deployment\",\r\n \"description\": \"Deletes a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/cancel/action\",\r\n \"displayName\": \"Cancel Deployment\",\r\n \"description\": \"Cancels a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/validate/action\",\r\n \"displayName\": \"Validate Deployment\",\r\n \"description\": \"Validates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments/operations\",\r\n \"displayName\": \"Deployment Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/operations/read\",\r\n \"displayName\": \"Get Deployment Operation\",\r\n \"description\": \"Gets or lists deployment operations.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Resources\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Resources\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Support\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"supportTickets\",\r\n \"displayName\": \"Support Ticket\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/read\",\r\n \"displayName\": \"Reads Support Ticket\",\r\n \"description\": \"Gets Support Ticket details (including status, severity, contact details and communications) or gets the list of Support Tickets across subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/write\",\r\n \"displayName\": \"Writes Support Ticket\",\r\n \"description\": \"Creates or Updates a Support Ticket. You can create a Support Ticket for Technical, Billing, Quotas or Subscription Management related issues. You can update severity, contact details and communications for existing support tickets.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.support\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.support\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Logic\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"workflows\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"displayName\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"displayName\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"displayName\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"displayName\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"displayName\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"displayName\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"displayName\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"displayName\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunRate\",\r\n \"displayName\": \"Run Rate\",\r\n \"displayDescription\": \"Rate of workflow run.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessPercentage\",\r\n \"displayName\": \"Run Success Percentage\",\r\n \"displayDescription\": \"Percentage of succeeded workflow runs over completed workflow runs.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/versions\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"displayName\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs\",\r\n \"displayName\": \"Workflow Run\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"displayName\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"displayName\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/actions\",\r\n \"displayName\": \"Workflow Run Action\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"displayName\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/operations\",\r\n \"displayName\": \"Workflow Run Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"displayName\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers\",\r\n \"displayName\": \"Trigger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"displayName\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"displayName\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Trigger Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Trigger Metric Definition\",\r\n \"description\": \"Reads workflow trigger metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerRate\",\r\n \"displayName\": \"Trigger Rate \",\r\n \"displayDescription\": \"Rate of workflow trigger.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessPercentage\",\r\n \"displayName\": \"Trigger Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow triggers over completed workflow trigger.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSkipPercentage\",\r\n \"displayName\": \"Trigger Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFirePercentage\",\r\n \"displayName\": \"Trigger Fire Percentage \",\r\n \"displayDescription\": \"Percentage of fired workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Trigger Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Reads the workflow trigger diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow trigger diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/histories\",\r\n \"displayName\": \"Trigger Histories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"displayName\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/accessKeys\",\r\n \"displayName\": \"Access Key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"displayName\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"displayName\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"displayName\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"displayName\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"displayName\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Action Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Action Metric Definition\",\r\n \"description\": \"Reads workflow action metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionRate\",\r\n \"displayName\": \"Action Rate\",\r\n \"displayDescription\": \"Rate of workflow action.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessPercentage\",\r\n \"displayName\": \"Action Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSkipPercentage\",\r\n \"displayName\": \"Action Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Action Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Action Diagnostic Setting\",\r\n \"description\": \"Reads the workflow action diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Action Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow action diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Logic\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Logic\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicNetwork\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"gatewaySupportedDevices\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/gatewaySupportedDevices/read\",\r\n \"displayName\": \"List Supported Devices\",\r\n \"description\": \"Retrieves the list of supported devices.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps\",\r\n \"displayName\": \"Reserved Ip\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"displayName\": \"Get Reserved Ips\",\r\n \"description\": \"Gets the reserved Ips\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/write\",\r\n \"displayName\": \"Add Reserved Ip\",\r\n \"description\": \"Add a new reserved Ip\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/delete\",\r\n \"displayName\": \"Delete Reserved Ip\",\r\n \"description\": \"Delete a reserved Ip.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/write\",\r\n \"displayName\": \"Add Virtual Network\",\r\n \"description\": \"Add a new virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network.\",\r\n \"description\": \"Deletes the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/checkIPAddressAvailability/action\",\r\n \"displayName\": \"Availability of an IP address in a given virtual network.\",\r\n \"description\": \"Checks the availability of a given IP address in a virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/read\",\r\n \"displayName\": \"Get Virtual Network Gateways\",\r\n \"description\": \"Gets the virtual network gateways.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/write\",\r\n \"displayName\": \"Add Virtual Network Gateway\",\r\n \"description\": \"Adds a virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/delete\",\r\n \"displayName\": \"Delete Virtual Network Gateway\",\r\n \"description\": \"Deletes the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/startDiagnostics/action\",\r\n \"displayName\": \"Start Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Starts diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/stopDiagnostics/action\",\r\n \"displayName\": \"Stop Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Stops the diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDiagnostics/action\",\r\n \"displayName\": \"Download Gateway Diagnostics\",\r\n \"description\": \"Downloads the gateway diagnostics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listCircuitServiceKey/action\",\r\n \"displayName\": \"Get Circuit Service Key\",\r\n \"description\": \"Retrieves the circuit service key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDeviceConfigurationScript/action\",\r\n \"displayName\": \"Download Configuration Script\",\r\n \"description\": \"Downloads the device configuration script.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listPackage/action\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/packages\",\r\n \"displayName\": \"Virtual Network Gateway Package\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/packages/read\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Gets the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/connections\",\r\n \"displayName\": \"Gateway Connection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/read\",\r\n \"displayName\": \"Get Conection List\",\r\n \"description\": \"Retrieves the list of connections.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/connect/action\",\r\n \"displayName\": \"Connect Gateway Connection\",\r\n \"description\": \"Connects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/disconnect/action\",\r\n \"displayName\": \"Disconnect Gateway Connection\",\r\n \"description\": \"Disconnects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/test/action\",\r\n \"displayName\": \"Test Gateway Connection\",\r\n \"description\": \"Tests a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRevokedCertificates\",\r\n \"displayName\": \"Geteway Client Revoked Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/read\",\r\n \"displayName\": \"Get Revoked Certificates.\",\r\n \"description\": \"Read the revoked client certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/write\",\r\n \"displayName\": \"Revoke Client Certificate\",\r\n \"description\": \"Revokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/delete\",\r\n \"displayName\": \"Unrevoke Client Certificate.\",\r\n \"description\": \"Unrevokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRootCertificates\",\r\n \"displayName\": \"Geteway Client Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/read\",\r\n \"displayName\": \"Get Client Root Certificates.\",\r\n \"description\": \"Find the client root certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/write\",\r\n \"displayName\": \"Upload Client Root Certificate\",\r\n \"description\": \"Uploads a new client root certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/delete\",\r\n \"displayName\": \"Delete Client Root Certificate.\",\r\n \"description\": \"Deletes the virtual network gateway client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/download/action\",\r\n \"displayName\": \"Downloads Certificate\",\r\n \"description\": \"Downloads certificate by thumbprint.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/listPackage/action\",\r\n \"displayName\": \"List Virtual Network Gateway\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicNetwork\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicNetwork\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Marketplace Ordering\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"agreements/offers/plans\",\r\n \"displayName\": \"Agreement\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/read\",\r\n \"displayName\": \"Get Agreement\",\r\n \"description\": \"Return an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/sign/action\",\r\n \"displayName\": \"Sign Agreement\",\r\n \"description\": \"Sign an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/cancel/action\",\r\n \"displayName\": \"Cancel Agreement\",\r\n \"description\": \"Cancel an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.MarketplaceOrdering\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.MarketplaceOrdering\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/NewRelic.APM\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"NewRelic.APM\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Devices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Devices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BigAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BigAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Sendgrid.Email\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Sendgrid.Email\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Compute\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Features\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Features\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Batch\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Batch\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLake\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLake\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.visualstudio\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.visualstudio\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataConnect\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataConnect\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cdn\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cdn\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Kona\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Kona\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/SuccessBricks.ClearDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"SuccessBricks.ClearDB\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.StreamAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.StreamAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BizTalkServices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BizTalkServices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ADHybridHealthService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ADHybridHealthService\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"displayName\": \"Microsoft Domains\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/generateSsoRequest/Action\",\r\n \"displayName\": \"Generate Domain Control Center Single Sign On Request\",\r\n \"description\": \"Generate a request for signing into domain control center.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/validateDomainRegistrationInformation/Action\",\r\n \"displayName\": \"Domain Purchase Info Validation\",\r\n \"description\": \"Validate domain purchase object without submitting it\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/checkDomainAvailability/Action\",\r\n \"displayName\": \"Check Domain Availablity\",\r\n \"description\": \"Check if a domain is available for purchase\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/listDomainRecommendations/Action\",\r\n \"displayName\": \"Retrieve Domain Recommendations\",\r\n \"description\": \"Retrieve the list domain recommendations based on keywords\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"domains\",\r\n \"displayName\": \"Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Read\",\r\n \"displayName\": \"Get Domains\",\r\n \"description\": \"Get the list of domains\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Write\",\r\n \"displayName\": \"Add or Update Domain\",\r\n \"description\": \"Add a new Domain or update an existing one\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/Delete\",\r\n \"displayName\": \"Delete Domain\",\r\n \"description\": \"Delete an existing domain.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domains/operationresults\",\r\n \"displayName\": \"Domain operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DomainRegistration/domains/operationresults/Read\",\r\n \"displayName\": \"Get Domain Operation\",\r\n \"description\": \"Get a domain operation\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DomainRegistration\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DomainRegistration\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicCompute\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/checkDomainNameAvailability/action\",\r\n \"displayName\": \"Availability For A Domain Name\",\r\n \"description\": \"Checks the availability of a given domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"resourceTypes/skus\",\r\n \"displayName\": \"Sku\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/resourceTypes/skus/read\",\r\n \"displayName\": \"Get Supported Skus\",\r\n \"description\": \"Gets the Sku list for supported resource types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames\",\r\n \"displayName\": \"Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/read\",\r\n \"displayName\": \"Gets Domain Names\",\r\n \"description\": \"Return the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/write\",\r\n \"displayName\": \"Add Domain Names\",\r\n \"description\": \"Add or modify the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/delete\",\r\n \"displayName\": \"Remove Domain Names\",\r\n \"description\": \"Remove the domain names for resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/swap/action\",\r\n \"displayName\": \"Swap Staging And Production Slots\",\r\n \"description\": \"Swaps the staging slot to the production slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates\",\r\n \"displayName\": \"Service Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/read\",\r\n \"displayName\": \"Get The Certificates\",\r\n \"description\": \"Returns the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/write\",\r\n \"displayName\": \"Add Service Certificates\",\r\n \"description\": \"Add or modify the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/delete\",\r\n \"displayName\": \"Delete Service Certificates\",\r\n \"description\": \"Delete the service certificates used.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/serviceCertificates/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/serviceCertificates/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions\",\r\n \"displayName\": \"Domain Name Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/read\",\r\n \"displayName\": \"Get The Domain Name Extensions\",\r\n \"description\": \"Returns the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/write\",\r\n \"displayName\": \"Add Domain Name Extensions\",\r\n \"description\": \"Add the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/delete\",\r\n \"displayName\": \"Remove Domain Name Extensions\",\r\n \"description\": \"Remove the domain name extensions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/active\",\r\n \"displayName\": \"Active Domain Name\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/active/write\",\r\n \"displayName\": \"Set Active Domain Name\",\r\n \"description\": \"Sets the active domain name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots\",\r\n \"displayName\": \"Deployment Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/read\",\r\n \"displayName\": \"Get Deploymen Slots\",\r\n \"description\": \"Shows the deployment slots.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/write\",\r\n \"displayName\": \"Create Deployment Slot\",\r\n \"description\": \"Creates or update the deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/delete\",\r\n \"displayName\": \"Delete Deployment Slot\",\r\n \"description\": \"Deletes a given deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/start/action\",\r\n \"displayName\": \"Start Deployment Slot\",\r\n \"description\": \"Starts a deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/stop/action\",\r\n \"displayName\": \"Suspend Deployment Slot\",\r\n \"description\": \"Suspends the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles\",\r\n \"displayName\": \"Deployment Slot Role\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/read\",\r\n \"displayName\": \"Get Deployment Slot Role\",\r\n \"description\": \"Get the role for the deployment slot.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences\",\r\n \"displayName\": \"Deployment Slot Role Extension Reference\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/read\",\r\n \"displayName\": \"Get Deployment Slot Role Extension Reference\",\r\n \"description\": \"Returns the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/write\",\r\n \"displayName\": \"Add Deployment Slot Role Extension Reference\",\r\n \"description\": \"Add or modify the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/delete\",\r\n \"displayName\": \"Remove Deployment Slot Role Extension Reference\",\r\n \"description\": \"Remove the extension reference for the deployment slot role.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/extensionReferences/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/extensionReferences/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances\",\r\n \"displayName\": \"Role Instance\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/read\",\r\n \"displayName\": \"Get Role Instance\",\r\n \"description\": \"Get the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/restart/action\",\r\n \"displayName\": \"Restart Role Instance\",\r\n \"description\": \"Restarts role instances.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/reimage/action\",\r\n \"displayName\": \"Reimage Role Instance\",\r\n \"description\": \"Reimages the role instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/roles/roleInstances/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/roles/roleInstances/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/start\",\r\n \"displayName\": \"Deployment Slot Start\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/start/write\",\r\n \"displayName\": \"Stop Deployment State\",\r\n \"description\": \"Changes the deployment slot state to stopped.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/state/stop\",\r\n \"displayName\": \"Deployment Slot Stopped\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/state/stop/write\",\r\n \"displayName\": \"Start Deployment State\",\r\n \"description\": \"Changes the deployment slot state to started.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/slots/upgradeDomain\",\r\n \"displayName\": \"Upgrade Domain\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/slots/upgradeDomain/write\",\r\n \"displayName\": \"Upgrade The Domain\",\r\n \"description\": \"Walk upgrade the domain.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers\",\r\n \"displayName\": \"Internal Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/read\",\r\n \"displayName\": \"Get Internal Load Balancers.\",\r\n \"description\": \"Gets the internal load balancers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/write\",\r\n \"displayName\": \"Create Internal Load Balance\",\r\n \"description\": \"Creates a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/delete\",\r\n \"displayName\": \"Remove Internal Load Balance\",\r\n \"description\": \"Remove a new internal load balance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/internalLoadBalancers/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/internalLoadBalancers/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets\",\r\n \"displayName\": \"Load Balanced Endpoint Sets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/read\",\r\n \"displayName\": \"Get Load Balanced Endpoint Sets\",\r\n \"description\": \"Shows the load balanced endpoint sets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/loadBalancedEndpointSets/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/loadBalancedEndpointSets/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"domainNames/availabilitySets\",\r\n \"displayName\": \"Availability Set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/domainNames/availabilitySets/read\",\r\n \"displayName\": \"Show Availability Set\",\r\n \"description\": \"Show the availability set for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines\",\r\n \"displayName\": \"Virtual Machine\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/read\",\r\n \"displayName\": \"Retrieve Virtual Machines\",\r\n \"description\": \"Retrieves list of virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/write\",\r\n \"displayName\": \"Add Virtual Machines\",\r\n \"description\": \"Add or modify virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/delete\",\r\n \"displayName\": \"Remove Virtual Machines\",\r\n \"description\": \"Removes virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/start/action\",\r\n \"displayName\": \"Start Virtual Machine\",\r\n \"description\": \"Start the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/restart/action\",\r\n \"displayName\": \"Restart Virtual Machine\",\r\n \"description\": \"Restarts virtual machines.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/stop/action\",\r\n \"displayName\": \"Stop Virtual Machine\",\r\n \"description\": \"Stops the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/shutdown/action\",\r\n \"displayName\": \"Shutdown Virtual Machine\",\r\n \"description\": \"Shutdown the virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/attachDisk/action\",\r\n \"displayName\": \"Attach Data Disk\",\r\n \"description\": \"Attaches a data disk to a virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/detachDisk/action\",\r\n \"displayName\": \"Detach Data Disk\",\r\n \"description\": \"Detaches a data disk from virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/downloadRemoteDesktopConnectionFile/action\",\r\n \"displayName\": \"Download RDP File\",\r\n \"description\": \"Downloads the RDP file for virtual machine.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions\",\r\n \"displayName\": \"Virtual Machine Extension\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/read\",\r\n \"displayName\": \"Get Virtual Machine Extension\",\r\n \"description\": \"Gets the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/write\",\r\n \"displayName\": \"Add Virtual Machine Extension\",\r\n \"description\": \"Puts the virtual machine extension.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/extensions/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/extensions/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/asyncOperations\",\r\n \"displayName\": \"Virtual Machine Async Operations\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/asyncOperations/read\",\r\n \"displayName\": \"Async Operations\",\r\n \"description\": \"Gets the possible async operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualMachines/disks\",\r\n \"displayName\": \"Virtual Machine Disk\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicCompute/virtualMachines/disks/read\",\r\n \"displayName\": \"Get Data Disks\",\r\n \"description\": \"Retrives list of data disks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicCompute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicCompute\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft SQL Database\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"servers\",\r\n \"displayName\": \"Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/import/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/upgrade/action\",\r\n \"displayName\": \"Upgrade server version\",\r\n \"description\": \"Enable new functionality available on the latest version of server and specify databases edition conversion map\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/operationResults\",\r\n \"displayName\": \"Server Upgrade Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/read\",\r\n \"displayName\": \"Get status of server upgrade operation\",\r\n \"description\": \"Operation is used to track progress of server upgrade from lower version to higher\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/operationResults/delete\",\r\n \"displayName\": \"Cancel server upgrade\",\r\n \"description\": \"Abort server version upgrade in progress\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recoverableDatabases\",\r\n \"displayName\": \"Recoverable Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recoverableDatabases/read\",\r\n \"displayName\": \"Get the last known database recovery point\",\r\n \"description\": \"This operation is used for disaster recovery of live database to restore database to last-known good backup point. It returns information about the last good backup but it doesn't actually restore the database.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/serviceObjectives\",\r\n \"displayName\": \"Service Level Objective\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/serviceObjectives/read\",\r\n \"displayName\": \"Get service level objectives\",\r\n \"description\": \"Retrieve list of service level objectives (also known as performance tiers) available on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/firewallRules\",\r\n \"displayName\": \"Server Firewall Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/read\",\r\n \"displayName\": \"Get server firewall rules\",\r\n \"description\": \"Retrieve server firewall rule details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/write\",\r\n \"displayName\": \"Create new or update existing server firewall rule\",\r\n \"description\": \"Create or update server firewall rule that controls IP address range allowed to connect to the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/delete\",\r\n \"displayName\": \"Delete server firewall rule\",\r\n \"description\": \"Delete firewall rule from the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools\",\r\n \"displayName\": \"Recommended Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/read\",\r\n \"displayName\": \"Get recommended elastic database pools\",\r\n \"description\": \"Retrieve recommendation for elastic database pools to reduce cost or improve performance based on historica resource utilization\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/metrics\",\r\n \"displayName\": \"Recommended Elastic Database Pool Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/metrics/read\",\r\n \"displayName\": \"Get recommended elastic database pools metrics\",\r\n \"description\": \"Retrieve metrics for recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/recommendedElasticPools/databases\",\r\n \"displayName\": \"Recommended Elastic Pool Databases\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/recommendedElasticPools/databases/read\",\r\n \"displayName\": \"Get recommended elastic pools databases\",\r\n \"description\": \"Retrieve databases that should be added into recommended elastic database pools for a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools\",\r\n \"displayName\": \"Elastic Database Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/read\",\r\n \"displayName\": \"Get elastic database pool details\",\r\n \"description\": \"Retrieve details of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/write\",\r\n \"displayName\": \"Create new or update existing elastic database pool\",\r\n \"description\": \"Create a new or change properties of existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/delete\",\r\n \"displayName\": \"Delete elastic database pool\",\r\n \"description\": \"Delete existing elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metricDefinitions\",\r\n \"displayName\": \"Elastic Database Pool Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metricDefinitions/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metric definitions\",\r\n \"description\": \"Return types of resource utilization metrics that are available for elastic database pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/metrics\",\r\n \"displayName\": \"Elastic Database Pool Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/metrics/read\",\r\n \"displayName\": \"Get elastic pool resource consumption metrics\",\r\n \"description\": \"Return elastic database pool resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"displayName\": \"Elastic Pool Database Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity/read\",\r\n \"displayName\": \"Get elastic pool database activity\",\r\n \"description\": \"Retrieve activities and details on a given database that is part of elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/elasticPoolActivity\",\r\n \"displayName\": \"Elastic Database Pool Activity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity/read\",\r\n \"displayName\": \"Get elastic database pool activity\",\r\n \"description\": \"Retrieve activities and details on a given elastic database pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/elasticPools/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/databases/read\",\r\n \"displayName\": \"Get elastic pool databases\",\r\n \"description\": \"Retrieve list and details of databases that are part of elastic database pool on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/usages\",\r\n \"displayName\": \"Server Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/usages/read\",\r\n \"displayName\": \"Get server usage details\",\r\n \"description\": \"Return server DTU quota and current DTU consuption by all databases within the server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/restorableDroppedDatabases\",\r\n \"displayName\": \"Restorable Dropped Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/restorableDroppedDatabases/read\",\r\n \"displayName\": \"Get list of restorable dropped databases\",\r\n \"description\": \"Retrieve a list of databases that were dropped on a given server that are still within retention policy. This operation returns a list of databases and associated metadata, like date of deletion.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases\",\r\n \"displayName\": \"Database\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/read\",\r\n \"displayName\": \"Get server details\",\r\n \"description\": \"Return a list of servers in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/write\",\r\n \"displayName\": \"Create new or update existing server\",\r\n \"description\": \"Create a new server or modify properties of existing server in a resource group on a subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/delete\",\r\n \"displayName\": \"Delete existing server\",\r\n \"description\": \"Delete a server and all contained databases and elastic pools\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/export/action\",\r\n \"displayName\": \"Create new database from DacPac\",\r\n \"description\": \"Create a new database on the server and deploy schema and data from a DacPac package\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/operationResults\",\r\n \"displayName\": \"Database Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/operationResults/read\",\r\n \"displayName\": \"Get status of database operation\",\r\n \"description\": \"Operation is used to track progress of long running database operation, such as scale.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/replicationLinks\",\r\n \"displayName\": \"Database Replication Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"displayName\": \"Get database replication links\",\r\n \"description\": \"Return a details about replication links established for a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\",\r\n \"displayName\": \"Terminate database replication\",\r\n \"description\": \"Terminate replication of a particular database with ability to specify whether link is terminated forcefully or gracefully\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"displayName\": \"Force-terminate database replication\",\r\n \"description\": \"Force-terminate database replication\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies\",\r\n \"displayName\": \"Database Data Masking Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/read\",\r\n \"displayName\": \"Get database data masking policy\",\r\n \"description\": \"Retrieve details of the data masking policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/write\",\r\n \"displayName\": \"Set database data masking policy\",\r\n \"description\": \"Change data masking policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"displayName\": \"Database Data Masking Policy Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/read\",\r\n \"displayName\": \"Get database data masking policy rule\",\r\n \"description\": \"Retrieve details of the data masking policy rule configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/write\",\r\n \"displayName\": \"Set database data masking policy rule\",\r\n \"description\": \"Change data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules/delete\",\r\n \"displayName\": \"Delete database data masking policy rule\",\r\n \"description\": \"Delete data masking policy rule for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metricDefinitions\",\r\n \"displayName\": \"Database Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metricDefinitions/read\",\r\n \"displayName\": \"Get database resource consumption metric definitions\",\r\n \"description\": \"Return types of metrics that are available for databases to indicate resource consuption that can be alerted on\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries\",\r\n \"displayName\": \"Database Top Queries\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/read\",\r\n \"displayName\": \"Get Top Queries for the database\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/queryText\",\r\n \"displayName\": \"Database Top Queries query text\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/queryText/read\",\r\n \"displayName\": \"Get Database Top Queries query text\",\r\n \"description\": \"Returns the Transact-SQL text for selected query ID\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/topQueries/statistics\",\r\n \"displayName\": \"Database Top Queries Statistics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/topQueries/statistics/read\",\r\n \"displayName\": \"Get Database Top Queries statistics\",\r\n \"description\": \"Returns aggregated runtime statistics for selected query in selected time period\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/connectionPolicies\",\r\n \"displayName\": \"Database Connection Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/read\",\r\n \"displayName\": \"Get database connection policy\",\r\n \"description\": \"Retrieve details of the connection policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/write\",\r\n \"displayName\": \"Set database connection policy\",\r\n \"description\": \"Change connection policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/metrics\",\r\n \"displayName\": \"Database Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/metrics/read\",\r\n \"displayName\": \"Get database resource consumption metrics\",\r\n \"description\": \"Return database resource utilization metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/transparentDataEncryption\",\r\n \"displayName\": \"Database Transparent Data Encryption\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/read\",\r\n \"displayName\": \"Get database transparent data encryption details\",\r\n \"description\": \"Retrieve status and details of transparent data encryption security feature for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/write\",\r\n \"displayName\": \"Change transparent data encryption state\",\r\n \"description\": \"Enable or disable transparent data encryption for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/auditingPolicies\",\r\n \"displayName\": \"Database Auditing Policy\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/read\",\r\n \"displayName\": \"Get database auditing policy\",\r\n \"description\": \"Retrieve details of the auditing policy configured on a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/write\",\r\n \"displayName\": \"Set database auditing policy\",\r\n \"description\": \"Change auditing policy for a given database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/serviceTierAdvisors\",\r\n \"displayName\": \"Database Service Tier Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors/read\",\r\n \"displayName\": \"Get recommended database performance level\",\r\n \"description\": \"Return suggestion about scaling database up or down based on query execution statistics to improve performance or reduce cost\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/usages\",\r\n \"displayName\": \"Database Usage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/usages/read\",\r\n \"displayName\": \"Get database usage details\",\r\n \"description\": \"Return database maxiumum size that can be reached and current size occupied by data\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/queryStore\",\r\n \"displayName\": \"Query Store settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/read\",\r\n \"displayName\": \"Get Query Store settings\",\r\n \"description\": \"Returns current values of Query Store settings for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/queryStore/write\",\r\n \"displayName\": \"Update Query Store settings\",\r\n \"description\": \"Updates Query Store setting for the database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/recommendedIndexes\",\r\n \"displayName\": \"Recommended Index\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/read\",\r\n \"displayName\": \"Get list of index recommendations\",\r\n \"description\": \"Retrieve list of index recommendations on a database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/recommendedIndexes/write\",\r\n \"displayName\": \"Update Recommended Index State\",\r\n \"description\": \"Apply index recommendation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/schemas/tables/columns\",\r\n \"displayName\": \"Database table column\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"displayName\": \"Get columns\",\r\n \"description\": \"Retrieve list of columns of a table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/missingindexes\",\r\n \"displayName\": \"Database Index Advisor\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/read\",\r\n \"displayName\": \"Get recommended database indexes\",\r\n \"description\": \"Return suggestions about database indexes to create, modify or delete in order to improve query performance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/missingindexes/write\",\r\n \"displayName\": \"Apply recommended database index\",\r\n \"description\": \"Use database index recommendation in a particular database\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/databases/importExportOperationResults\",\r\n \"displayName\": \"Database Import/Export Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import or export operation on the server\",\r\n \"description\": \"Return details about database import or export operation from DacPac located in storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"servers/importExportOperationResults\",\r\n \"displayName\": \"Server Database Import Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/importExportOperationResults/read\",\r\n \"displayName\": \"Get details about database import operation on the server\",\r\n \"description\": \"Return the list with details for database import operations from storage account on a given server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Sql\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Sql\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft API Management\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/checkNameAvailability/action\",\r\n \"displayName\": \"Check Name Availability\",\r\n \"description\": \"Checks if provided service name is available\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"service\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/write\",\r\n \"displayName\": \"Create a new instance of API Management Service\",\r\n \"description\": \"Create a new instance of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/read\",\r\n \"displayName\": \"Read metadata for an API Management Service instance\",\r\n \"description\": \"Read metadata for an API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/delete\",\r\n \"displayName\": \"Delete API Management Service instance\",\r\n \"description\": \"Delete API Management Service instance\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"displayName\": \"Update domain names\",\r\n \"description\": \"Setup, update or remove custom domain names for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"displayName\": \"Upload SSL certificate\",\r\n \"description\": \"Upload SSL certificate for an API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/checkcustomhostname/action\",\r\n \"displayName\": \"Check hostname mapping\",\r\n \"description\": \"Checks if provided host name correctly resolves to *.azure-api.net\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/action\",\r\n \"displayName\": \"Backup API Management Service\",\r\n \"description\": \"Backup API Management Service to the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/action\",\r\n \"displayName\": \"Restore API Management Service\",\r\n \"description\": \"Restore API Management Service from the specified container in a user provided storage account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"displayName\": \"Manage Service Deployments\",\r\n \"description\": \"Change SKU/units, add/remove regional deployments of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/action\",\r\n \"displayName\": \"Manage VPN configuration\",\r\n \"description\": \"Change VPN configuration of API Management Service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/operationresults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/operationresults/read\",\r\n \"displayName\": \"Get long running operation result\",\r\n \"description\": \"Gets current status of long running operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backup/operationresults\",\r\n \"displayName\": \"Backup Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backup/operationresults/read\",\r\n \"displayName\": \"Get backup operation result\",\r\n \"description\": \"Gets current status of backup operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/issues\",\r\n \"displayName\": \"Collection of all API Management issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/issues/read\",\r\n \"displayName\": \"Gets all API Management issues\",\r\n \"description\": \"Gets all API Management issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/loggers\",\r\n \"displayName\": \"Logger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/read\",\r\n \"displayName\": \"Gets loggers available to the current user\",\r\n \"description\": \"Gets loggers available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/write\",\r\n \"displayName\": \"Adds a new logger\",\r\n \"description\": \"Adds a new logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/delete\",\r\n \"displayName\": \"Removes existing logger\",\r\n \"description\": \"Removes existing logger\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users\",\r\n \"displayName\": \"User account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/read\",\r\n \"displayName\": \"Gets registered users\",\r\n \"description\": \"Gets registered users\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/write\",\r\n \"displayName\": \"Registers a new user\",\r\n \"description\": \"Registers a new user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/delete\",\r\n \"displayName\": \"Removes user account\",\r\n \"description\": \"Removes user account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/generateSsoUrl/action\",\r\n \"displayName\": \"Execute action\",\r\n \"description\": \"Execute action\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues\",\r\n \"displayName\": \"Get user issues\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/read\",\r\n \"displayName\": \"Get list of all user reported issues\",\r\n \"description\": \"Get list of all user reported issues\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/write\",\r\n \"displayName\": \"Registers an issue to API Management\",\r\n \"description\": \"Registers an issue to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/comments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/issues/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/roles\",\r\n \"displayName\": \"Security roles assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/roles/read\",\r\n \"displayName\": \"Get roles\",\r\n \"description\": \"Get roles\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/subscriptions\",\r\n \"displayName\": \"Regenerates subscription key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/read\",\r\n \"displayName\": \"Gets user subscriptions\",\r\n \"description\": \"Gets user subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/write\",\r\n \"displayName\": \"Requests subscription for a new product\",\r\n \"description\": \"Requests subscription for a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/read\",\r\n \"displayName\": \"Get list of all user applications\",\r\n \"description\": \"Get list of all user applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/applications/attachments\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/write\",\r\n \"displayName\": \"Add Attachment to application\",\r\n \"description\": \"Add Attachment to application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/applications/attachments/delete\",\r\n \"displayName\": \"Removes an attachment\",\r\n \"description\": \"Removes an attachment\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/identities\",\r\n \"displayName\": \"Collection of user credentials for different identity providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities/read\",\r\n \"displayName\": \"Get identity collection\",\r\n \"description\": \"Get identity collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/keys\",\r\n \"displayName\": \"Shared access key set\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/keys/read\",\r\n \"displayName\": \"Gets user keys\",\r\n \"description\": \"Gets user keys\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/groups\",\r\n \"displayName\": \"Developer groups assigned to user\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/groups/read\",\r\n \"displayName\": \"Gets user groups\",\r\n \"description\": \"Gets user groups\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/users/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/settings\",\r\n \"displayName\": \"Tenant settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/read\",\r\n \"displayName\": \"Get tenant's settings\",\r\n \"description\": \"Get tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/settings/write\",\r\n \"displayName\": \"Update tenant's settings\",\r\n \"description\": \"Update tenant's settings\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/policy\",\r\n \"displayName\": \"Tenant-level policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/save/action\",\r\n \"displayName\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"description\": \"Creates commit with configuration snapshot to the specified branch in the repository\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/deploy/action\",\r\n \"displayName\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"description\": \"Runs a deployment task to apply changes from the specified git branch to the configuration in db.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/validate/action\",\r\n \"displayName\": \"Validates changes from the specified branch\",\r\n \"description\": \"Validates changes from the specified branch\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/configuration/operationResults\",\r\n \"displayName\": \"\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/configuration/operationResults/read\",\r\n \"displayName\": \"Returns results of operations\",\r\n \"description\": \"Returns results of operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access\",\r\n \"displayName\": \"Tenant access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/tenant/access/git\",\r\n \"displayName\": \"Tenant git access information\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/read\",\r\n \"displayName\": \"Get tenant's access information\",\r\n \"description\": \"Get tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/write\",\r\n \"displayName\": \"Update tenant's access information\",\r\n \"description\": \"Update tenant's access information\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tenant/access/git/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managedeployments/operationresults\",\r\n \"displayName\": \"Manage Deployments Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managedeployments/operationresults/read\",\r\n \"displayName\": \"Get manage deployments operation result\",\r\n \"description\": \"Gets current status of manage deployments operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/subscriptions\",\r\n \"displayName\": \"Product subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"displayName\": \"Gets product subscriptions\",\r\n \"description\": \"Gets product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/write\",\r\n \"displayName\": \"Subscribes user to the product\",\r\n \"description\": \"Subscribes user to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/delete\",\r\n \"displayName\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"description\": \"Delete subscription. This operation can be used to delete subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regeneratePrimaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/regenerateSecondaryKey/action\",\r\n \"displayName\": \"Execute operation\",\r\n \"description\": \"Execute operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/managevpn/operationresults\",\r\n \"displayName\": \"Manage VPN Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managevpn/operationresults/read\",\r\n \"displayName\": \"Get manage VPN operation result\",\r\n \"description\": \"Gets current status of manage VPN operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications\",\r\n \"displayName\": \"API Management application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/read\",\r\n \"displayName\": \"Gets all all API Management applications\",\r\n \"description\": \"Gets all all API Management applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/write\",\r\n \"displayName\": \"Registers an application to API Management\",\r\n \"description\": \"Registers an application to API Management\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/delete\",\r\n \"displayName\": \"Removes existing application\",\r\n \"description\": \"Removes existing application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applications/attachments\",\r\n \"displayName\": \"Application Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applications/attachments/read\",\r\n \"displayName\": \"Gets application attachments\",\r\n \"description\": \"Gets application attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/backends\",\r\n \"displayName\": \"Backend\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/read\",\r\n \"displayName\": \"Gets backends available to the current user\",\r\n \"description\": \"Gets backends available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/write\",\r\n \"displayName\": \"Adds a new backend\",\r\n \"description\": \"Adds a new backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/delete\",\r\n \"displayName\": \"Removes existing backend\",\r\n \"description\": \"Removes existing backend\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis\",\r\n \"displayName\": \"API\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/read\",\r\n \"displayName\": \"Get registered APIs\",\r\n \"description\": \"Get registered APIs\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/write\",\r\n \"displayName\": \"Create new API\",\r\n \"description\": \"Create new API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/delete\",\r\n \"displayName\": \"Remove API\",\r\n \"description\": \"Remove API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues\",\r\n \"displayName\": \"API issue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/read\",\r\n \"displayName\": \"Get Issues associated with API\",\r\n \"description\": \"Get Issues associated with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/write\",\r\n \"displayName\": \"Updates issue details\",\r\n \"description\": \"Updates issue details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/delete\",\r\n \"displayName\": \"Removes existing issue\",\r\n \"description\": \"Removes existing issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/comments\",\r\n \"displayName\": \"Issue Comments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/read\",\r\n \"displayName\": \"Gets issue comments\",\r\n \"description\": \"Gets issue comments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/write\",\r\n \"displayName\": \"Add comment to issue\",\r\n \"description\": \"Add comment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/issues/attachments\",\r\n \"displayName\": \"Issue Attachments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/read\",\r\n \"displayName\": \"Gets issue attachments\",\r\n \"description\": \"Gets issue attachments\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/write\",\r\n \"displayName\": \"Add Attachment to issue\",\r\n \"description\": \"Add Attachment to issue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/products\",\r\n \"displayName\": \"API associated products\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/products/read\",\r\n \"displayName\": \"Get associated Products with API\",\r\n \"description\": \"Get associated Products with API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/policy\",\r\n \"displayName\": \"API policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations\",\r\n \"displayName\": \"API operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/read\",\r\n \"displayName\": \"Get API operations\",\r\n \"description\": \"Get API operations\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/write\",\r\n \"displayName\": \"Create new API operation\",\r\n \"description\": \"Create new API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/delete\",\r\n \"displayName\": \"Remove API operation\",\r\n \"description\": \"Remove API operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/operations/policy\",\r\n \"displayName\": \"Operation policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas\",\r\n \"displayName\": \"API Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/read\",\r\n \"displayName\": \"Gets all the schemas stored for a given API\",\r\n \"description\": \"Gets all the schemas stored for a given API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/write\",\r\n \"displayName\": \"Sets the Schemas used by the API\",\r\n \"description\": \"Sets the Schemas used by the API\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/delete\",\r\n \"displayName\": \"Removes existing Schema\",\r\n \"description\": \"Removes existing Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/apis/schemas/document\",\r\n \"displayName\": \"Document describing the API schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/read\",\r\n \"displayName\": \"Get the document describing the Schema\",\r\n \"description\": \"Get the document describing the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document/write\",\r\n \"displayName\": \"Update the document for the Schema\",\r\n \"description\": \"Update the document for the Schema\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products\",\r\n \"displayName\": \"Product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/read\",\r\n \"displayName\": \"Gets products available to current user\",\r\n \"description\": \"Gets products available to current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/write\",\r\n \"displayName\": \"Creates a new product\",\r\n \"description\": \"Creates a new product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/delete\",\r\n \"displayName\": \"Removes existing product\",\r\n \"description\": \"Removes existing product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/subscriptions\",\r\n \"displayName\": \"Product subscriptions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptions/read\",\r\n \"displayName\": \"Get product subscriptions\",\r\n \"description\": \"Get product subscriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/apis\",\r\n \"displayName\": \"API added to product\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/read\",\r\n \"displayName\": \"Gets APIs included into the product\",\r\n \"description\": \"Gets APIs included into the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/write\",\r\n \"displayName\": \"Add API to product\",\r\n \"description\": \"Add API to product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/apis/delete\",\r\n \"displayName\": \"Remove API from product\",\r\n \"description\": \"Remove API from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/policy\",\r\n \"displayName\": \"Product policy configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/read\",\r\n \"displayName\": \"Get policy configuration\",\r\n \"description\": \"Get policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/write\",\r\n \"displayName\": \"Set policy configuration\",\r\n \"description\": \"Set policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policy/delete\",\r\n \"displayName\": \"Remove policy configuration\",\r\n \"description\": \"Remove policy configuration\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/products/groups\",\r\n \"displayName\": \"Assigned developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/read\",\r\n \"displayName\": \"Gets groups assigned to the product\",\r\n \"description\": \"Gets groups assigned to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/write\",\r\n \"displayName\": \"Assigns group to the product\",\r\n \"description\": \"Assigns group to the product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/groups/delete\",\r\n \"displayName\": \"Removes group assignment from product\",\r\n \"description\": \"Removes group assignment from product\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/updatehostname/operationresults\",\r\n \"displayName\": \"Update Hostnames Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/updatehostname/operationresults/read\",\r\n \"displayName\": \"Get update hostnames operation result\",\r\n \"description\": \"Gets current status of update hostnames operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policySnippets\",\r\n \"displayName\": \"Collection of policy snippets\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policySnippets/read\",\r\n \"displayName\": \"Get snippets\",\r\n \"description\": \"Get snippets\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/read\",\r\n \"displayName\": \"Gets certificates available to the current user\",\r\n \"description\": \"Gets certificates available to the current user\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/write\",\r\n \"displayName\": \"Adds a new certificate\",\r\n \"description\": \"Adds a new certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates/delete\",\r\n \"displayName\": \"Removes existing certificate\",\r\n \"description\": \"Removes existing certificate\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/templates\",\r\n \"displayName\": \"API Management email template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/read\",\r\n \"displayName\": \"Gets all email templates\",\r\n \"description\": \"Gets all email templates\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/write\",\r\n \"displayName\": \"Updates email template\",\r\n \"description\": \"Updates email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/delete\",\r\n \"displayName\": \"Reset existing email template\",\r\n \"description\": \"Reset existing email template\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/regions\",\r\n \"displayName\": \"Service Regions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/regions/read\",\r\n \"displayName\": \"Gets service regions\",\r\n \"description\": \"Gets service regions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/policyChecks\",\r\n \"displayName\": \"Collection of policy checks\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policyChecks/read\",\r\n \"displayName\": \"Get policy checks\",\r\n \"description\": \"Get policy checks\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/restore/operationresults\",\r\n \"displayName\": \"Restore Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/restore/operationresults/read\",\r\n \"displayName\": \"Get restore operation result\",\r\n \"description\": \"Gets current status of restore operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/properties\",\r\n \"displayName\": \"Configuration property\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/read\",\r\n \"displayName\": \"Gets list of all properties\",\r\n \"description\": \"Gets list of all properties\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/write\",\r\n \"displayName\": \"Creates a new property\",\r\n \"description\": \"Creates a new property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/delete\",\r\n \"displayName\": \"Removes existing property\",\r\n \"description\": \"Removes existing property\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups\",\r\n \"displayName\": \"Developer group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/read\",\r\n \"displayName\": \"Gets existing groups details\",\r\n \"description\": \"Gets existing groups details\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/write\",\r\n \"displayName\": \"Creates a new group\",\r\n \"description\": \"Creates a new group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/delete\",\r\n \"displayName\": \"Removes existing group\",\r\n \"description\": \"Removes existing group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/groups/users\",\r\n \"displayName\": \"Group member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/read\",\r\n \"displayName\": \"Gets group members\",\r\n \"description\": \"Gets group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/write\",\r\n \"displayName\": \"Includes user in the group\",\r\n \"description\": \"Includes user in the group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/users/delete\",\r\n \"displayName\": \"Removes user from group members\",\r\n \"description\": \"Removes user from group members\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/getssotoken\",\r\n \"displayName\": \"SSO Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/getssotoken/read\",\r\n \"displayName\": \"Get SSO token\",\r\n \"description\": \"Gets SSO token that can be used to login into API Management Service portal as an administrator\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/authorizationServers\",\r\n \"displayName\": \"OAuth Authorization Server\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"displayName\": \"Get authorization servers list\",\r\n \"description\": \"Get authorization servers list\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/write\",\r\n \"displayName\": \"Creates a new authorization server\",\r\n \"description\": \"Creates a new authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/delete\",\r\n \"displayName\": \"Removes authorization server\",\r\n \"description\": \"Removes authorization server\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications\",\r\n \"displayName\": \"Azure Active Directory Application\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/read\",\r\n \"displayName\": \"Gets all Azure Active Directory Applications\",\r\n \"description\": \"Gets all Azure Active Directory Applications\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory Application\",\r\n \"description\": \"Registers a new Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/delete\",\r\n \"displayName\": \"Removes Azure Active Directory Application\",\r\n \"description\": \"Removes Azure Active Directory Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/aadApplications/directories\",\r\n \"displayName\": \"Azure Active Directory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/read\",\r\n \"displayName\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"description\": \"Gets all Azure Active Directories linked to specific AAD Application\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/write\",\r\n \"displayName\": \"Registers a new Azure Active Directory\",\r\n \"description\": \"Registers a new Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/aadApplications/directories/delete\",\r\n \"displayName\": \"Removes Azure Active Directory\",\r\n \"description\": \"Removes Azure Active Directory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/bySubscription\",\r\n \"displayName\": \"Subscription aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/bySubscription/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byOperation\",\r\n \"displayName\": \"By operation report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byOperation/read\",\r\n \"displayName\": \"Get by operation report\",\r\n \"description\": \"Get by operation report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byGeo\",\r\n \"displayName\": \"Region aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byGeo/read\",\r\n \"displayName\": \"Gets data grouped by geographical region.\",\r\n \"description\": \"Gets data grouped by geographical region.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byUser\",\r\n \"displayName\": \"Developer aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byUser/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byTime\",\r\n \"displayName\": \"Time aggregated report.\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byTime/read\",\r\n \"displayName\": \"Gets data aggregated by time periods.\",\r\n \"description\": \"Gets data aggregated by time periods.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byApi\",\r\n \"displayName\": \"By api report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byApi/read\",\r\n \"displayName\": \"Get by api report\",\r\n \"description\": \"Get by api report\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/reports/byProduct\",\r\n \"displayName\": \"Product aggregated report\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/reports/byProduct/read\",\r\n \"displayName\": \"Gets data grouped by developers.\",\r\n \"description\": \"Gets data grouped by developers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"service/applicationCategory\",\r\n \"displayName\": \"CAPI Management application categories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/applicationCategory/read\",\r\n \"displayName\": \"Gets all Application categories\",\r\n \"description\": \"Gets all Application categories\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ApiManagement\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ApiManagement\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure ServiceBus\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/write\",\r\n \"displayName\": \"Create or Update Relay\",\r\n \"description\": \"Create or Update Relay properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/read\",\r\n \"displayName\": \"Get Relay\",\r\n \"description\": \"Get list of Relay Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/Delete\",\r\n \"displayName\": \"Delete Relay\",\r\n \"description\": \"Operation to delete Relay Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/action\",\r\n \"displayName\": \" Get Relay Authorization Rules\",\r\n \"description\": \" Get the list of Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/relays/authorizationRules\",\r\n \"displayName\": \"Relay\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Relay Authorization Rule\",\r\n \"description\": \"Create Relay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/delete\",\r\n \"displayName\": \"Delete Relay Authorization Rules\",\r\n \"description\": \"Operation to delete Relay Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/relays/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Relay Listkeys\",\r\n \"description\": \"Get the Connection String to Relay\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/write\",\r\n \"displayName\": \"Create or Update Queue\",\r\n \"description\": \"Create or Update Queue properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/read\",\r\n \"displayName\": \"Get Queue\",\r\n \"description\": \"Get list of Queue Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/Delete\",\r\n \"displayName\": \"Delete Queue\",\r\n \"description\": \"Operation to delete Queue Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/action\",\r\n \"displayName\": \" Get Queue Authorization Rules\",\r\n \"description\": \" Get the list of Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/queues/authorizationRules\",\r\n \"displayName\": \"Queue\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Queue Authorization Rule\",\r\n \"description\": \"Create Queue Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/delete\",\r\n \"displayName\": \"Delete Queue Authorization Rules\",\r\n \"description\": \"Operation to delete Queue Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Queue Listkeys\",\r\n \"description\": \"Get the Connection String to Queue\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/write\",\r\n \"displayName\": \"Create or Update Topic\",\r\n \"description\": \"Create or Update Topic properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/read\",\r\n \"displayName\": \"Get Topic\",\r\n \"description\": \"Get list of Topic Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/Delete\",\r\n \"displayName\": \"Delete Topic\",\r\n \"description\": \"Operation to delete Topic Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/action\",\r\n \"displayName\": \" Get Topic Authorization Rules\",\r\n \"description\": \" Get the list of Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/authorizationRules\",\r\n \"displayName\": \"Topic\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Topic Authorization Rule\",\r\n \"description\": \"Create Topic Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/delete\",\r\n \"displayName\": \"Delete Topic Authorization Rules\",\r\n \"description\": \"Operation to delete Topic Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get Topic Listkeys\",\r\n \"description\": \"Get the Connection String to Topic\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/topics/subscriptions\",\r\n \"displayName\": \"TopicSubscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/write\",\r\n \"displayName\": \"Create or Update TopicSubscription\",\r\n \"description\": \"Create or Update TopicSubscription properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/read\",\r\n \"displayName\": \"Get TopicSubscription\",\r\n \"description\": \"Get list of TopicSubscription Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/Delete\",\r\n \"displayName\": \"Delete TopicSubscription\",\r\n \"description\": \"Operation to delete TopicSubscription Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"premiumMessagingRegions\",\r\n \"displayName\": \"Non Resource Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/premiumMessagingRegions/read\",\r\n \"displayName\": \"Get premium messaging regions.\",\r\n \"description\": \"Get premium messaging regions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ServiceBus\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ServiceBus\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DocumentDb\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/action\",\r\n \"displayName\": \"Create database account\",\r\n \"description\": \"Create a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"databaseAccountNames\",\r\n \"displayName\": \"Database Account Names\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccountNames/read\",\r\n \"displayName\": \"Read database account names\",\r\n \"description\": \"Checks for name availability.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts\",\r\n \"displayName\": \"Database Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"displayName\": \"Read database account\",\r\n \"description\": \"Reads a database account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"displayName\": \"Update database account\",\r\n \"description\": \"Update a database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"displayName\": \"Delete database accounts\",\r\n \"description\": \"Deletes the database accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metricDefinitions\",\r\n \"displayName\": \"Database Accoun metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metricDefinitions/read\",\r\n \"displayName\": \"Read database account metrics definitions\",\r\n \"description\": \"Reads the database account metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/metrics\",\r\n \"displayName\": \"Database Account metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/metrics/read\",\r\n \"displayName\": \"Read database account metrics\",\r\n \"description\": \"Reads the database account metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/usages\",\r\n \"displayName\": \"Database Account usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/usages/read\",\r\n \"displayName\": \"Read database account usages\",\r\n \"description\": \"Reads the database account usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metricDefinitions\",\r\n \"displayName\": \"Collection metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metricDefinitions/read\",\r\n \"displayName\": \"Read collection metric definitions\",\r\n \"description\": \"Reads the collection metric definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/metrics\",\r\n \"displayName\": \"Collection metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/metrics/read\",\r\n \"displayName\": \"Read collection metrics\",\r\n \"description\": \"Reads the collection metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/collections/usages\",\r\n \"displayName\": \"Collection usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/collections/usages/read\",\r\n \"displayName\": \"Read collection usages\",\r\n \"description\": \"Reads the collection usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metricDefinitions\",\r\n \"displayName\": \"Database metric definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metricDefinitions/read\",\r\n \"displayName\": \"Read database metric definitions\",\r\n \"description\": \"Reads the database metric definitions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/metrics\",\r\n \"displayName\": \"Database metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/metrics/read\",\r\n \"displayName\": \"Read database metrics\",\r\n \"description\": \"Reads the database metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/databases/usages\",\r\n \"displayName\": \"Database usages\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databases/usages/read\",\r\n \"displayName\": \"Read database usages\",\r\n \"description\": \"Reads the database usages.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"databaseAccounts/readonlykeys\",\r\n \"displayName\": \"Database Account readonly keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/read\",\r\n \"displayName\": \"Read database account readonly keys\",\r\n \"description\": \"Reads the database account readonly keys.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DocumentDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DocumentDB\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Automation\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"automationAccounts\",\r\n \"displayName\": \"Azure Automation Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation account\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/configurations\",\r\n \"displayName\": \"Azure Automation Desired State Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get an Azure Automation DSC's content\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobSchedules\",\r\n \"displayName\": \"Azure Automation Job Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation job schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connectionTypes\",\r\n \"displayName\": \"Azure Automation Connection Type Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection type asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/modules\",\r\n \"displayName\": \"Azure Automation Module\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation module\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/credentials\",\r\n \"displayName\": \"Azure Automation Credential Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation credential asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/certificates\",\r\n \"displayName\": \"Azure Automation Certificate Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation certificate asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/schedules\",\r\n \"displayName\": \"Azure Automation Schedule Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation schedule asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs\",\r\n \"displayName\": \"Azure Automation Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/jobs/streams\",\r\n \"displayName\": \"Azure Automation Job Stream\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation job stream\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/connections\",\r\n \"displayName\": \"Azure Automation Connection Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation connection asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/variables\",\r\n \"displayName\": \"Azure Automation Variable Asset\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation variable asset\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks\",\r\n \"displayName\": \"Azure Automation Runbook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation runbook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft\",\r\n \"displayName\": \"Azure Automation Runbook Draft\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/readContent/action\",\r\n \"displayName\": \"Read Content\",\r\n \"description\": \"Get the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/writeContent/action\",\r\n \"displayName\": \"Write Content\",\r\n \"description\": \"Create the content of an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/publish/action\",\r\n \"displayName\": \"Publish\",\r\n \"description\": \"Publish an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/undoEdit/action\",\r\n \"displayName\": \"Undo Edit\",\r\n \"description\": \"Undo edits to an Azure Automation runbook draft\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/runbooks/draft/testJob\",\r\n \"displayName\": \"Azure Automation Runbook Draft Test Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Get an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/write\",\r\n \"displayName\": \"Create\",\r\n \"description\": \"Create an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/stop/action\",\r\n \"displayName\": \"Stop\",\r\n \"description\": \"Stop an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/suspend/action\",\r\n \"displayName\": \"Suspend\",\r\n \"description\": \"Suspend an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft/testJob/resume/action\",\r\n \"displayName\": \"Resume\",\r\n \"description\": \"Resume an Azure Automation runbook draft test job\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"automationAccounts/webhooks\",\r\n \"displayName\": \"Azure Automation Webhook\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Read an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/write\",\r\n \"displayName\": \"Create or Update\",\r\n \"description\": \"Create or update an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Delete an Azure Automation webhook \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/generateUri/action\",\r\n \"displayName\": \"Generate URI\",\r\n \"description\": \"Generate a URI for an Azure Automation webhook\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Automation\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Automation\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft authorization\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"classicAdministrators\",\r\n \"displayName\": \"Classic subscription administrator\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"displayName\": \"Get administrator\",\r\n \"description\": \"Reads the administrators for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/write\",\r\n \"displayName\": \"Set administrator\",\r\n \"description\": \"Add or modify administrator to a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/classicAdministrators/delete\",\r\n \"displayName\": \"Delete administrator\",\r\n \"description\": \"Removes the administrator from the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locks\",\r\n \"displayName\": \"Management lock\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/read\",\r\n \"displayName\": \"Get management locks\",\r\n \"description\": \"Gets locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/write\",\r\n \"displayName\": \"Add management locks\",\r\n \"description\": \"Add locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/delete\",\r\n \"displayName\": \"Delete management locks\",\r\n \"description\": \"Delete locks at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"permissions\",\r\n \"displayName\": \"Permission\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/permissions/read\",\r\n \"displayName\": \"List permissions\",\r\n \"description\": \"Lists all the permissions the caller has at a given scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleDefinitions\",\r\n \"displayName\": \"Role definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"displayName\": \"Get role definition\",\r\n \"description\": \"Get information about a role definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"roleAssignments\",\r\n \"displayName\": \"Role assignment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/read\",\r\n \"displayName\": \"Get role assignment\",\r\n \"description\": \"Get information about a role assignment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/write\",\r\n \"displayName\": \"Create role assignment\",\r\n \"description\": \"Create a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"displayName\": \"Delete role assignment\",\r\n \"description\": \"Delete a role assignment at the specified scope.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Authorization\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Authorization\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Storage\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/write\",\r\n \"displayName\": \"Create/Update Storage Account\",\r\n \"description\": \"Creates a storage account with the specified parameters or update the properties or tags or adds custom domain for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Deletes an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"displayName\": \"List Storage Account Keys\",\r\n \"description\": \"Returns the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"displayName\": \"Regenerate Storage Account Keys\",\r\n \"description\": \"Regenerates the access keys for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/read\",\r\n \"displayName\": \"List/Get Storage Account(s)\",\r\n \"description\": \"Returns the list of storage accounts or gets the properties for the specified storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/checknameavailability\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/checknameavailability/read\",\r\n \"displayName\": \"Check Account Name Availability\",\r\n \"description\": \"Checks that account name is valid and is not in use.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/usages\",\r\n \"displayName\": \"Storage Accounts\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/usages/read\",\r\n \"displayName\": \"Get Subscription Usages\",\r\n \"description\": \"Returns the limit and the current usage count for resources in the specified subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Storage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Storage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/register/action\",\r\n \"displayName\": \"Register Subscription\",\r\n \"description\": \"Registers the subscription\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"dnszones\",\r\n \"displayName\": \"DNS Zone\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/read\",\r\n \"displayName\": \"Get DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/write\",\r\n \"displayName\": \"Create or Update DNS Zone\",\r\n \"description\": \"Create or update a DNS zone within a resource group. Used to update the tags on a DNS zone resource. Note that this command can not be used to create or update record sets within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/delete\",\r\n \"displayName\": \"Delete DNS Zone\",\r\n \"description\": \"Get the DNS zone, in JSON format. The zone properties include tags, etag, numberOfRecordSets, and maxNumberOfRecordSets. Note that this command does not retrieve the record sets contained within the zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/MX\",\r\n \"displayName\": \"DNS MX RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/read\",\r\n \"displayName\": \"Get RecordSet MX\",\r\n \"description\": \"Get the record set of type ‘MX’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/write\",\r\n \"displayName\": \"Create or update RecordSet MX\",\r\n \"description\": \"Create or update a record set of type ‘MX’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MX/delete\",\r\n \"displayName\": \"Delete RecordSet MX\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/AAAA\",\r\n \"displayName\": \"DNS AAAA RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/read\",\r\n \"displayName\": \"Get RecordSet AAAA\",\r\n \"description\": \"Get the record set of type ‘AAAA’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/write\",\r\n \"displayName\": \"Create or update RecordSet AAAA\",\r\n \"description\": \"Create or update a record set of type ‘AAAA’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAA/delete\",\r\n \"displayName\": \"Delete RecordSet AAAA\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/SRV\",\r\n \"displayName\": \"DNS SRV RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/read\",\r\n \"displayName\": \"Get RecordSet SRV\",\r\n \"description\": \"Get the record set of type ‘SRV’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/write\",\r\n \"displayName\": \"Create or update a record set of type ‘SRV’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"description\": \"Create or update RecordSet SRV\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRV/delete\",\r\n \"displayName\": \"Delete RecordSet SRV\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/PTR\",\r\n \"displayName\": \"DNS PTR RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/read\",\r\n \"displayName\": \"Get RecordSet PTR\",\r\n \"description\": \"Get the record set of type ‘PTR’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/write\",\r\n \"displayName\": \"Create or update RecordSet PTR\",\r\n \"description\": \"Create or update a record set of type ‘PTR’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTR/delete\",\r\n \"displayName\": \"Delete RecordSet PTR\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/A\",\r\n \"displayName\": \"DNS A RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/read\",\r\n \"displayName\": \"Get RecordSet A\",\r\n \"description\": \"Get the record set of type ‘A’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/write\",\r\n \"displayName\": \"Create or update RecordSet A\",\r\n \"description\": \"Create or update a record set of type ‘A’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/A/delete\",\r\n \"displayName\": \"Delete RecordSet A\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dnszones/TXT\",\r\n \"displayName\": \"DNS TXT RecordSet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/read\",\r\n \"displayName\": \"Get RecordSet TXT\",\r\n \"description\": \"Get the record set of type ‘TXT’, in JSON format. The record set contains a list of records as well as the TTL, tags, and etag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/write\",\r\n \"displayName\": \"Create or update RecordSet TXT\",\r\n \"description\": \"Create or update a record set of type ‘TXT’ within a DNS zone. The records specified will replace the current records in the record set.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXT/delete\",\r\n \"displayName\": \"Delete RecordSet TXT\",\r\n \"description\": \"Remove the RecordSet of a given name and type from a DNS zone.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces\",\r\n \"displayName\": \"Network Interface\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/read\",\r\n \"displayName\": \"Get Network Interface\",\r\n \"description\": \"Gets a network interface definition. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/write\",\r\n \"displayName\": \"Create or Update Network Interface\",\r\n \"description\": \"Creates a network interface or updates an existing network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"displayName\": \"Join Virtual Machine to a network interface\",\r\n \"description\": \"Joins a Virtual Machine to a network interface\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/delete\",\r\n \"displayName\": \"Delete Network Interface\",\r\n \"description\": \"Deletes a network interface. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkInterfaces/loadBalancers\",\r\n \"displayName\": \"Network Interface Load Balancers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"displayName\": \"Get Network Interface Load Balancers\",\r\n \"description\": \"Gets all the load balancers that the network interface is part of\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicIPAddresses\",\r\n \"displayName\": \"Public Ip Address\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/read\",\r\n \"displayName\": \"Get Public Ip Address\",\r\n \"description\": \"Gets a public ip address definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/write\",\r\n \"displayName\": \"Create or Update Public Ip Address\",\r\n \"description\": \"Creates a public Ip address or updates an existing public Ip address. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"displayName\": \"Delete Public Ip Address\",\r\n \"description\": \"Deletes a public Ip address.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"displayName\": \"Join Public Ip Address\",\r\n \"description\": \"Joins a public ip address\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Public IP Address Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Public IP Address Diagnostic Settings\",\r\n \"description\": \"Gets the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Public IP Address Diagnostic Settings\",\r\n \"description\": \"Creates or updates the Public IP Address Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"publicipaddresses/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Public IP Address Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicipaddresses/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Public IP Address Event Log Definitions\",\r\n \"description\": \"Gets the events for Public IP Address\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"LoadBalancerAlertEvent\",\r\n \"displayName\": \"Load Balancer Alert Events\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"PublicIpProgrammingStatus\",\r\n \"displayName\": \"Public IP Programming Status\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers\",\r\n \"displayName\": \"Load Balancer\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/read\",\r\n \"displayName\": \"Get Load Balancer\",\r\n \"description\": \"Gets a load balancer definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/write\",\r\n \"displayName\": \"Create or Update Load Balancer\",\r\n \"description\": \"Creates a load balancer or updates an existing load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/delete\",\r\n \"displayName\": \"Delete Load Balancer\",\r\n \"description\": \"Deletes a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/networkInterfaces\",\r\n \"displayName\": \"Load Balancer Network Interfaces\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"displayName\": \"Get Load Balancer Network Interfaces\",\r\n \"description\": \"Gets references to all the network interfaces under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/loadBalancingRules\",\r\n \"displayName\": \"Load Balancer Load Balancing Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"displayName\": \"Get Load Balancer Load Balancing Rule\",\r\n \"description\": \"Gets a load balancer load balancing rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Load Balancing Rule\",\r\n \"description\": \"Creates a load balancer load balancing rule or updates an existing load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Load Balancing Rule\",\r\n \"description\": \"Deletes a load balancer load balancing rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/backendAddressPools\",\r\n \"displayName\": \"Load Balancer Backend Address Pool\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Load Balancer Backend Address Pool\",\r\n \"description\": \"Joins a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"displayName\": \"Get Load Balancer Backend Address Pool\",\r\n \"description\": \"Gets a load balancer backend address pool definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"displayName\": \"Create or Update Load Balancer Backend Address Pool\",\r\n \"description\": \"Creates a load balancer backend address pool or updates an existing load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"displayName\": \"Delete Load Balancer Backend Address Pool\",\r\n \"description\": \"Deletes a load balancer backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/inboundNatRules\",\r\n \"displayName\": \"Load Balancer Inbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"displayName\": \"Join Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Joins a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Gets a load balancer inbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Creates a load balancer inbound nat rule or updates an existing load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Inbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer inbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/outboundNatRules\",\r\n \"displayName\": \"Load Balancer Outbound Nat Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/read\",\r\n \"displayName\": \"Get Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Gets a load balancer outbound nat rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/write\",\r\n \"displayName\": \"Create or Update Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Creates a load balancer outbound nat rule or updates an existing load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules/delete\",\r\n \"displayName\": \"Delete Load Balancer Outbound Nat Rule\",\r\n \"description\": \"Deletes a load balancer outbound nat rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/probes\",\r\n \"displayName\": \"Load Balancer Probe\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"displayName\": \"Get Load Balancer Probe\",\r\n \"description\": \"Gets a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/write\",\r\n \"displayName\": \"Create or Update Load Balancer Probe\",\r\n \"description\": \"Creates a load balancer probe or updates an existing load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes/delete\",\r\n \"displayName\": \"Delete Load Balancer Probe\",\r\n \"description\": \"Deletes a load balancer probe\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"loadBalancers/virtualMachines\",\r\n \"displayName\": \"Load Balancer Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"displayName\": \"Get Load Balancer Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines under a load balancer\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/write\",\r\n \"displayName\": \"Create or Update Virtual Network\",\r\n \"description\": \"Creates a virtual network or updates an existing virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network\",\r\n \"description\": \"Deletes a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets\",\r\n \"displayName\": \"Virtual Network Subnet\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"displayName\": \"Join Virtual Network\",\r\n \"description\": \"Joins a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"displayName\": \"Get Virtual Network Subnet\",\r\n \"description\": \"Gets a virtual network subnet definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"displayName\": \"Create or Update Virtual Network Subnet\",\r\n \"description\": \"Creates a virtual network subnet or updates an existing virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"displayName\": \"Delete Virtual Network Subnet\",\r\n \"description\": \"Deletes a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/subnets/virtualMachines\",\r\n \"displayName\": \"Virtual Network Subnet Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Subnet Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network subnet\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/virtualMachines\",\r\n \"displayName\": \"Virtual Network Virtual Machines\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"displayName\": \"Get Virtual Network Virtual Machines\",\r\n \"description\": \"Gets references to all the virtual machines in a virtual network\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"trafficManagerProfiles\",\r\n \"displayName\": \"Traffic Manager Profile\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"displayName\": \"Get Traffic Manager Profile\",\r\n \"description\": \"Get the Traffic Manager profile configuration. This includes DNS settings, traffic routing settings, endpoint monitoring settings, and the list of endpoints routed by this Traffic Manager profile.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"displayName\": \"Create or Update Traffic Manager Profile\",\r\n \"description\": \"Create a Traffic Manager profile, or modify the configuration of an existing Traffic Manager profile. This includes enabling or disabling a profile and modifying DNS settings, traffic routing settings, or endpoint monitoring settings. Endpoints routed by the Traffic Manager profile can be added, removed, enabled or disabled.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerProfiles/delete\",\r\n \"displayName\": \"Delete Traffic Manager Profile\",\r\n \"description\": \"Delete the Traffic Manager profile. All settings associated with the Traffic Manager profile will be lost, and the profile can no longer be used to route traffic.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups\",\r\n \"displayName\": \"Network Security Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"displayName\": \"Get Network Security Group\",\r\n \"description\": \"Gets a network security group definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"displayName\": \"Create or Update Network Security Group\",\r\n \"description\": \"Creates a network security group or updates an existing network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"displayName\": \"Delete Network Security Group\",\r\n \"description\": \"Deletes a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"displayName\": \"Join Network Security Group\",\r\n \"description\": \"Joins a network security group\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Network Security Groups Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Network Security Groups Diagnostic Settings\",\r\n \"description\": \"Gets the Network Security Groups Diagnostic Settings\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Create or update Network Security Groups diagnostic settings\",\r\n \"description\": \"Creates or updates the Network Security Groups diagnostic settings, this operation is supplimented by insghts resource provider.\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networksecuritygroups/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Network Security Groups Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networksecuritygroups/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Get Network Security Group Event Log Definitions\",\r\n \"description\": \"Gets the events for network security group\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"NetworkSecurityGroupEvent\",\r\n \"displayName\": \"Network Security Group Event\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"NetworkSecurityGroupRuleCounter\",\r\n \"displayName\": \"Network Security Group Rule Counter\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/defaultSecurityRules\",\r\n \"displayName\": \"Default Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"displayName\": \"Get Default Security Rule\",\r\n \"description\": \"Gets a default security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"networkSecurityGroups/securityRules\",\r\n \"displayName\": \"Security Rule\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"displayName\": \"Get Security Rule\",\r\n \"description\": \"Gets a security rule definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"displayName\": \"Create or Update Security Rule\",\r\n \"description\": \"Creates a security rule or updates an existing security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"displayName\": \"Delete Security Rule\",\r\n \"description\": \"Deletes a security rule\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/read\",\r\n \"displayName\": \"Get Application Gateway\",\r\n \"description\": \"Gets an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/write\",\r\n \"displayName\": \"Create or Update Application Gateway\",\r\n \"description\": \"Creates an application gateway or updates an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/delete\",\r\n \"displayName\": \"Delete Application Gateway\",\r\n \"description\": \"Deletes an application gateway\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"ApplicationGateway Log Definitions\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \">Gets the logs for Application Gateway\",\r\n \"description\": \"Gets the events for Application Gateway\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ApplicationGatewayAccessLog\",\r\n \"displayName\": \"Application Gateway Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"applicationGateways/backendAddressPools\",\r\n \"displayName\": \"Application Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"displayName\": \"Join Application Gateway Backend Address Pool\",\r\n \"description\": \"Joins an application gateway backend address pool\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables\",\r\n \"displayName\": \"Route Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/read\",\r\n \"displayName\": \"Get Route Table\",\r\n \"description\": \"Gets a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/write\",\r\n \"displayName\": \"Create or Update Route Table\",\r\n \"description\": \"Creates a route table or Updates an existing rotue table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/delete\",\r\n \"displayName\": \"Delete Route Table\",\r\n \"description\": \"Deletes a route table definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/join/action\",\r\n \"displayName\": \"Join Route Table\",\r\n \"description\": \"Joins a route table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"routeTables/routes\",\r\n \"displayName\": \"Route\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/read\",\r\n \"displayName\": \"Get Route\",\r\n \"description\": \"Gets a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/write\",\r\n \"displayName\": \"Create or Update Route\",\r\n \"description\": \"Creates a route or Updates an existing route\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/delete\",\r\n \"displayName\": \"Delete Route\",\r\n \"description\": \"Deletes a route definition\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operationResults\",\r\n \"displayName\": \"Operation Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operationResults/read\",\r\n \"displayName\": \"Get Operation Result\",\r\n \"description\": \"Gets operation result of an async POST or DELETE operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/checkDnsNameAvailability\",\r\n \"displayName\": \"Dns Availability Check Result\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/checkDnsNameAvailability/read\",\r\n \"displayName\": \"Check Dns Name Availability\",\r\n \"description\": \"Checks if dns label is available at the specified location\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/operations\",\r\n \"displayName\": \"Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/operations/read\",\r\n \"displayName\": \"Get Operation Resource\",\r\n \"description\": \"Gets operation resource that represents status of an asynchronous operation\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"locations/usage\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Network/locations/usage/read\",\r\n \"displayName\": \"Get Usage Metric\",\r\n \"description\": \"Gets the resources usage metrics\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Network\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Network\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Cache\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"redis\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/write\",\r\n \"displayName\": \"Manage Redis Cache (read-write)\",\r\n \"description\": \"Modify the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/read\",\r\n \"displayName\": \"Manage Redis Cache (read-only)\",\r\n \"description\": \"View the Redis Cache's settings and configuration in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/delete\",\r\n \"displayName\": \"Delete Redis Cache\",\r\n \"description\": \"Delete the entire Redis Cache\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/listKeys/action\",\r\n \"displayName\": \"View Redis Cache Access Keys\",\r\n \"description\": \"View the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Redis Cache Access Keys\",\r\n \"description\": \"Change the value of Redis Cache access keys in the management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"redis/metricdefinitions\",\r\n \"displayName\": \"Redis cache\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/metricdefinitions/Read\",\r\n \"displayName\": \"Microsoft.Cache Metric Definitions\",\r\n \"description\": \"Gets the available metrics for microsoft.cache\",\r\n \"origin\": null,\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"connectedclients\",\r\n \"displayName\": \"Connected Clients\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed\",\r\n \"displayName\": \"Total Operations\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits\",\r\n \"displayName\": \"Cache Hits\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses\",\r\n \"displayName\": \"Cache Misses\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands\",\r\n \"displayName\": \"Gets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands\",\r\n \"displayName\": \"Sets\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys\",\r\n \"displayName\": \"Evicted Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys\",\r\n \"displayName\": \"Total Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys\",\r\n \"displayName\": \"Expired Keys\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory\",\r\n \"displayName\": \"Used Memory\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss\",\r\n \"displayName\": \"Used Memory RSS\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad\",\r\n \"displayName\": \"Server Load\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite\",\r\n \"displayName\": \"Cache Write\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead\",\r\n \"displayName\": \"Cache Read\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients0\",\r\n \"displayName\": \"Connected Clients (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed0\",\r\n \"displayName\": \"Total Operations (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits0\",\r\n \"displayName\": \"Cache Hits (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses0\",\r\n \"displayName\": \"Cache Misses (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands0\",\r\n \"displayName\": \"Gets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands0\",\r\n \"displayName\": \"Sets (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys0\",\r\n \"displayName\": \"Evicted Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys0\",\r\n \"displayName\": \"Total Keys (Node 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys0\",\r\n \"displayName\": \"Expired Keys (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory0\",\r\n \"displayName\": \"Used Memory (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss0\",\r\n \"displayName\": \"Used Memory RSS (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad0\",\r\n \"displayName\": \"Server Load (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite0\",\r\n \"displayName\": \"Cache Write (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead0\",\r\n \"displayName\": \"Cache Read (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime0\",\r\n \"displayName\": \"CPU (Shard 0)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients1\",\r\n \"displayName\": \"Connected Clients (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed1\",\r\n \"displayName\": \"Total Operations (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits1\",\r\n \"displayName\": \"Cache Hits (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses1\",\r\n \"displayName\": \"Cache Misses (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands1\",\r\n \"displayName\": \"Gets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands1\",\r\n \"displayName\": \"Sets (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys1\",\r\n \"displayName\": \"Evicted Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys1\",\r\n \"displayName\": \"Total Keys (Node 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys1\",\r\n \"displayName\": \"Expired Keys (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory1\",\r\n \"displayName\": \"Used Memory (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss1\",\r\n \"displayName\": \"Used Memory RSS (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad1\",\r\n \"displayName\": \"Server Load (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite1\",\r\n \"displayName\": \"Cache Write (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead1\",\r\n \"displayName\": \"Cache Read (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime1\",\r\n \"displayName\": \"CPU (Shard 1)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients2\",\r\n \"displayName\": \"Connected Clients (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed2\",\r\n \"displayName\": \"Total Operations (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits2\",\r\n \"displayName\": \"Cache Hits (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses2\",\r\n \"displayName\": \"Cache Misses (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands2\",\r\n \"displayName\": \"Gets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands2\",\r\n \"displayName\": \"Sets (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys2\",\r\n \"displayName\": \"Evicted Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys2\",\r\n \"displayName\": \"Total Keys (Node 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys2\",\r\n \"displayName\": \"Expired Keys (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory2\",\r\n \"displayName\": \"Used Memory (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss2\",\r\n \"displayName\": \"Used Memory RSS (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad2\",\r\n \"displayName\": \"Server Load (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite2\",\r\n \"displayName\": \"Cache Write (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead2\",\r\n \"displayName\": \"Cache Read (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime2\",\r\n \"displayName\": \"CPU (Shard 2)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients3\",\r\n \"displayName\": \"Connected Clients (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed3\",\r\n \"displayName\": \"Total Operations (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits3\",\r\n \"displayName\": \"Cache Hits (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses3\",\r\n \"displayName\": \"Cache Misses (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands3\",\r\n \"displayName\": \"Gets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands3\",\r\n \"displayName\": \"Sets (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys3\",\r\n \"displayName\": \"Evicted Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys3\",\r\n \"displayName\": \"Total Keys (Node 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys3\",\r\n \"displayName\": \"Expired Keys (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory3\",\r\n \"displayName\": \"Used Memory (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss3\",\r\n \"displayName\": \"Used Memory RSS (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad3\",\r\n \"displayName\": \"Server Load (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite3\",\r\n \"displayName\": \"Cache Write (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead3\",\r\n \"displayName\": \"Cache Read (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime3\",\r\n \"displayName\": \"CPU (Shard 3)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients4\",\r\n \"displayName\": \"Connected Clients (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed4\",\r\n \"displayName\": \"Total Operations (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits4\",\r\n \"displayName\": \"Cache Hits (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses4\",\r\n \"displayName\": \"Cache Misses (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands4\",\r\n \"displayName\": \"Gets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands4\",\r\n \"displayName\": \"Sets (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys4\",\r\n \"displayName\": \"Evicted Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys4\",\r\n \"displayName\": \"Total Keys (Node 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys4\",\r\n \"displayName\": \"Expired Keys (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory4\",\r\n \"displayName\": \"Used Memory (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss4\",\r\n \"displayName\": \"Used Memory RSS (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad4\",\r\n \"displayName\": \"Server Load (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite4\",\r\n \"displayName\": \"Cache Write (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead4\",\r\n \"displayName\": \"Cache Read (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime4\",\r\n \"displayName\": \"CPU (Shard 4)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients5\",\r\n \"displayName\": \"Connected Clients (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed5\",\r\n \"displayName\": \"Total Operations (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits5\",\r\n \"displayName\": \"Cache Hits (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses5\",\r\n \"displayName\": \"Cache Misses (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands5\",\r\n \"displayName\": \"Gets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands5\",\r\n \"displayName\": \"Sets (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys5\",\r\n \"displayName\": \"Evicted Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys5\",\r\n \"displayName\": \"Total Keys (Node 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys5\",\r\n \"displayName\": \"Expired Keys (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory5\",\r\n \"displayName\": \"Used Memory (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss5\",\r\n \"displayName\": \"Used Memory RSS (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad5\",\r\n \"displayName\": \"Server Load (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite5\",\r\n \"displayName\": \"Cache Write (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead5\",\r\n \"displayName\": \"Cache Read (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime5\",\r\n \"displayName\": \"CPU (Shard 5)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients6\",\r\n \"displayName\": \"Connected Clients (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed6\",\r\n \"displayName\": \"Total Operations (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits6\",\r\n \"displayName\": \"Cache Hits (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses6\",\r\n \"displayName\": \"Cache Misses (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands6\",\r\n \"displayName\": \"Gets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands6\",\r\n \"displayName\": \"Sets (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys6\",\r\n \"displayName\": \"Evicted Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys6\",\r\n \"displayName\": \"Total Keys (Node 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys6\",\r\n \"displayName\": \"Expired Keys (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory6\",\r\n \"displayName\": \"Used Memory (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss6\",\r\n \"displayName\": \"Used Memory RSS (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad6\",\r\n \"displayName\": \"Server Load (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite6\",\r\n \"displayName\": \"Cache Write (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead6\",\r\n \"displayName\": \"Cache Read (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime6\",\r\n \"displayName\": \"CPU (Shard 6)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients7\",\r\n \"displayName\": \"Connected Clients (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed7\",\r\n \"displayName\": \"Total Operations (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits7\",\r\n \"displayName\": \"Cache Hits (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses7\",\r\n \"displayName\": \"Cache Misses (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands7\",\r\n \"displayName\": \"Gets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands7\",\r\n \"displayName\": \"Sets (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys7\",\r\n \"displayName\": \"Evicted Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys7\",\r\n \"displayName\": \"Total Keys (Node 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys7\",\r\n \"displayName\": \"Expired Keys (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory7\",\r\n \"displayName\": \"Used Memory (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss7\",\r\n \"displayName\": \"Used Memory RSS (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad7\",\r\n \"displayName\": \"Server Load (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite7\",\r\n \"displayName\": \"Cache Write (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead7\",\r\n \"displayName\": \"Cache Read (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime7\",\r\n \"displayName\": \"CPU (Shard 7)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients8\",\r\n \"displayName\": \"Connected Clients (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed8\",\r\n \"displayName\": \"Total Operations (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits8\",\r\n \"displayName\": \"Cache Hits (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses8\",\r\n \"displayName\": \"Cache Misses (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands8\",\r\n \"displayName\": \"Gets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands8\",\r\n \"displayName\": \"Sets (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys8\",\r\n \"displayName\": \"Evicted Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys8\",\r\n \"displayName\": \"Total Keys (Node 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys8\",\r\n \"displayName\": \"Expired Keys (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory8\",\r\n \"displayName\": \"Used Memory (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss8\",\r\n \"displayName\": \"Used Memory RSS (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad8\",\r\n \"displayName\": \"Server Load (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite8\",\r\n \"displayName\": \"Cache Write (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead8\",\r\n \"displayName\": \"Cache Read (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime8\",\r\n \"displayName\": \"CPU (Shard 8)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"connectedclients9\",\r\n \"displayName\": \"Connected Clients (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalcommandsprocessed9\",\r\n \"displayName\": \"Total Operations (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachehits9\",\r\n \"displayName\": \"Cache Hits (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cachemisses9\",\r\n \"displayName\": \"Cache Misses (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"getcommands9\",\r\n \"displayName\": \"Gets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"setcommands9\",\r\n \"displayName\": \"Sets (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"evictedkeys9\",\r\n \"displayName\": \"Evicted Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"totalkeys9\",\r\n \"displayName\": \"Total Keys (Node 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"expiredkeys9\",\r\n \"displayName\": \"Expired Keys (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemory9\",\r\n \"displayName\": \"Used Memory (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"usedmemoryRss9\",\r\n \"displayName\": \"Used Memory RSS (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverLoad9\",\r\n \"displayName\": \"Server Load (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheWrite9\",\r\n \"displayName\": \"Cache Write (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"cacheRead9\",\r\n \"displayName\": \"Cache Read (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"BytesPerSecond\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"percentProcessorTime9\",\r\n \"displayName\": \"CPU (Shard 9)\",\r\n \"displayDescription\": null,\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"availabilities\": [\r\n {\r\n \"TimeGrain\": \"PT5M\",\r\n \"Retention\": \"P90D\"\r\n },\r\n {\r\n \"TimeGrain\": \"PT1H\",\r\n \"Retention\": \"P90D\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cache\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cache\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft.BingMaps\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/updateCommunicationPreference/action\",\r\n \"displayName\": \"Update Communication Preferences\",\r\n \"description\": \"Updates the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/listCommunicationPreference/action\",\r\n \"displayName\": \"List Communication Preferences\",\r\n \"description\": \"Gets the communication preferences for the owner of Microsoft.BingMaps/mapApis\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"mapApis\",\r\n \"displayName\": \"mapApis\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/read\",\r\n \"displayName\": \"Read\",\r\n \"description\": \"Gets the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/write\",\r\n \"displayName\": \"Write\",\r\n \"description\": \"Updates the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/delete\",\r\n \"displayName\": \"Delete\",\r\n \"description\": \"Deletes the resource for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Key\",\r\n \"description\": \"Regenerate key(s) for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.BingMaps/mapApis/listSecrets/action\",\r\n \"displayName\": \"List Secrets\",\r\n \"description\": \"List the secrets for Microsoft.BingMaps/mapApis\",\r\n \"origin\": \"user\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BingMaps\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BingMaps\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/checkNameAvailability/action\",\r\n \"displayName\": \"Check Service Name Availability\",\r\n \"description\": \"Checks availability of the service name.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"metricDefinitions\",\r\n \"displayName\": \"The metric definitions for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/metricDefinitions/read\",\r\n \"displayName\": \"Read search service metric definitions\",\r\n \"description\": \"Gets the available metrics for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"Latency\",\r\n \"displayName\": \"Latency\",\r\n \"displayDescription\": \"Average latency for the search service\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"diagnosticSettings\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostic Setting\",\r\n \"description\": \"Gets the diganostic setting read for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/diagnosticSettings/write\",\r\n \"displayName\": \"Set Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diganostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"logDefinitions\",\r\n \"displayName\": \"The log definition for the search service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/logDefinitions/read\",\r\n \"displayName\": \"Read search service log definitions\",\r\n \"description\": \"Gets the available logs for the search service\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"OperationLogs\",\r\n \"displayName\": \"Operation Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices\",\r\n \"displayName\": \"Search Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/write\",\r\n \"displayName\": \"Set Search Service\",\r\n \"description\": \"Creates or updates the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/read\",\r\n \"displayName\": \"Get Search Service\",\r\n \"description\": \"Reads the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/delete\",\r\n \"displayName\": \"Delete Search Service\",\r\n \"description\": \"Deletes the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/start/action\",\r\n \"displayName\": \"Start Search Service\",\r\n \"description\": \"Starts the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/stop/action\",\r\n \"displayName\": \"Stop Search Service\",\r\n \"description\": \"Stops the search service.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listAdminKeys/action\",\r\n \"displayName\": \"Get Admin Key\",\r\n \"description\": \"Reads the admin keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/regenerateAdminKey/action\",\r\n \"displayName\": \"Regenerate Admin Key\",\r\n \"description\": \"Regenerates the admin key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/action\",\r\n \"displayName\": \"Create Query Key\",\r\n \"description\": \"Creates the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/createQueryKey\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/createQueryKey/delete\",\r\n \"displayName\": \"Delete Query Key\",\r\n \"description\": \"Deletes the query key.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"searchServices/listQueryKeys\",\r\n \"displayName\": \"API Keys\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/listQueryKeys/read\",\r\n \"displayName\": \"Get Query Key\",\r\n \"description\": \"Reads the query keys.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Search\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Search\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicStorage\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/checkStorageAccountAvailability/action\",\r\n \"displayName\": \"Check Storage Account Availability\",\r\n \"description\": \"Checks for the availability of a storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts\",\r\n \"displayName\": \"Storage Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"displayName\": \"Get The Storage Account\",\r\n \"description\": \"Return the storage account with the given account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/write\",\r\n \"displayName\": \"Add Storage Account\",\r\n \"description\": \"Adds a new storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/delete\",\r\n \"displayName\": \"Delete Storage Account\",\r\n \"description\": \"Delete the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"displayName\": \"List Access Keys\",\r\n \"description\": \"Lists the access keys for the storage accounts.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"displayName\": \"Regenerate Access Keys\",\r\n \"description\": \"Regenerates the existing access keys for the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/images\",\r\n \"displayName\": \"Storage Account Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"displayName\": \"Get Storage Account Image\",\r\n \"description\": \"Returns the storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/images/delete\",\r\n \"displayName\": \"Delete Storage Account Image\",\r\n \"description\": \"Deletes a given storage account image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"storageAccounts/osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/storageAccounts/osImages/delete\",\r\n \"displayName\": \"Delete Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"osImages\",\r\n \"displayName\": \"Operating System Image\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/osImages/read\",\r\n \"displayName\": \"Get Operating System Image\",\r\n \"description\": \"Returns the operating system image.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Services\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/read\",\r\n \"displayName\": \"Get Available Services\",\r\n \"description\": \"Get the available services.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metricDefinitions\",\r\n \"displayName\": \"Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metricDefinitions/read\",\r\n \"displayName\": \"Get Metric Definitions\",\r\n \"description\": \"Gets the metrics definitions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/metrics\",\r\n \"displayName\": \"Metrics\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/metrics/read\",\r\n \"displayName\": \"Get Metrics\",\r\n \"description\": \"Gets the metrics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/diagnosticSettings\",\r\n \"displayName\": \"Diagnostics Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/read\",\r\n \"displayName\": \"Get Diagnostics Settings\",\r\n \"description\": \"Get the diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicStorage/services/diagnosticSettings/write\",\r\n \"displayName\": \"Add Diagnostics Settings\",\r\n \"description\": \"Add or modify diagnostics settings.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicStorage\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicStorage\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Monitoring Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"AlertRules\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Write\",\r\n \"displayName\": \"Alert Rule write\",\r\n \"description\": \"Writing to an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Delete\",\r\n \"displayName\": \"Alert Rule delete\",\r\n \"description\": \"Deleting an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Read\",\r\n \"displayName\": \"Alert Rule read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"displayName\": \"Alert Rule activated\",\r\n \"description\": \"Alert Rule activated\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"displayName\": \"Alert Rule resolved\",\r\n \"description\": \"Alert Rule resolved\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AlertRules/Incidents\",\r\n \"displayName\": \"Alert Rules\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"displayName\": \"Alert Rule Incidents read\",\r\n \"description\": \"Reading an alert rule configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/values\",\r\n \"displayName\": \"Events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"displayName\": \"Event types management values read\",\r\n \"description\": \"Read management event type values\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"eventtypes/digestevents\",\r\n \"displayName\": \"Digest events\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/eventtypes/digestevents/Read\",\r\n \"displayName\": \"Event types management digest read\",\r\n \"description\": \"Read management event type digest\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"AutoscaleSettings\",\r\n \"displayName\": \"Autoscale\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Write\",\r\n \"displayName\": \"Autoscale Setting write\",\r\n \"description\": \"Writing to an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Delete\",\r\n \"displayName\": \"Autoscale Setting delete\",\r\n \"description\": \"Deleting an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Read\",\r\n \"displayName\": \"Autoscale Setting read\",\r\n \"description\": \"Reading an autoscale setting configuration\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaleup/Action\",\r\n \"displayName\": \"Autoscale scale up operation\",\r\n \"description\": \"Autoscale scale up operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/AutoscaleSettings/Scaledown/Action\",\r\n \"displayName\": \"Autoscale scale down operation\",\r\n \"description\": \"Autoscale scale down operation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.insights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.insights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Operational Insights\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"linkTargets\",\r\n \"displayName\": \"Unlinked Account\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/linkTargets/read\",\r\n \"displayName\": \"List Unlinked Accounts\",\r\n \"description\": \"Lists existing accounts that are not associated with an Azure subscription. To link this Azure subscription to a workspace, use a customer id returned by this operation in the customer id property of the Create Workspace operation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces\",\r\n \"displayName\": \"Workspace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"displayName\": \"Create Workspace\",\r\n \"description\": \"Creates a new workspace or links to an existing workspace by providing the customer id from the existing workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"displayName\": \"Get Workspace\",\r\n \"description\": \"Gets an existing workspace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/delete\",\r\n \"displayName\": \"Delete Workspace\",\r\n \"description\": \"Deletes a workspace. If the workspace was linked to an existing workspace at creation time then the workspace it was linked to is not deleted.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/generateregistrationcertificate/action\",\r\n \"displayName\": \"Generates Registration Certificate for Workspace.\",\r\n \"description\": \"Generates Registration Certificate for the workspace. This Certificate is used to connect Microsoft System Center Operation Manager to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"displayName\": \"List Workspace Shared Keys\",\r\n \"description\": \"Retrieves the shared keys for the workspace. These keys are used to connect Microsoft Operational Insights agents to the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"displayName\": \"Search Workspace Data\",\r\n \"description\": \"Executes a search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/managementGroups\",\r\n \"displayName\": \"Management Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/managementGroups/read\",\r\n \"displayName\": \"Get Management Groups for Workspace\",\r\n \"description\": \"Gets the names and metadata for System Center Operations Manager management groups connected to this workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/schema\",\r\n \"displayName\": \"Search Schema\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/schema/read\",\r\n \"displayName\": \"Get Search Schema\",\r\n \"description\": \"Gets the search schema for the workspace. Search schema includes the exposed fields and their types.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/usages\",\r\n \"displayName\": \"Usage Metric\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/usages/read\",\r\n \"displayName\": \"Get Usage Data for Workspace\",\r\n \"description\": \"Gets usage data for a workspace including the amount of data read by the workspace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/savedSearches\",\r\n \"displayName\": \"Saved Search\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"displayName\": \"Get Saved Search\",\r\n \"description\": \"Gets a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/write\",\r\n \"displayName\": \"Create Saved Search\",\r\n \"description\": \"Creates a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/delete\",\r\n \"displayName\": \"Delete Saved Search\",\r\n \"description\": \"Deletes a saved search query\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workspaces/storageinsightconfigs\",\r\n \"displayName\": \"Storage Insight Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/write\",\r\n \"displayName\": \"Create Storage Configuration\",\r\n \"description\": \"Creates a new storage configuration. These configurations are used to pull data from a location in an existing storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/read\",\r\n \"displayName\": \"Get Storage Configuration\",\r\n \"description\": \"Gets a storage configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/delete\",\r\n \"displayName\": \"Delete Storage Configuration\",\r\n \"description\": \"Deletes a storage configuration. This will stop Microsoft Operational Insights from reading data from the storage account.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.OperationalInsights\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.OperationalInsights\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure Notification Hub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/CheckNamespaceAvailability/action\",\r\n \"displayName\": \"Check Namespace name availability.\",\r\n \"description\": \"Checks whether or not a given Namespace resource name is available within the NotificationHub service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"Namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/CheckNotificationHubAvailability/action\",\r\n \"displayName\": \"Check NotificationHub name availability.\",\r\n \"description\": \"Checks whether or not a given NotificationHub name is available inside a Namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/write\",\r\n \"displayName\": \"Create or Update Notification Hub \",\r\n \"description\": \"Create a Notification Hub and Update its properties. Its properties mainly include PNS Credentials. Authorization Rules and TTL\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/read\",\r\n \"displayName\": \"Get Notification Hub\",\r\n \"description\": \"Get list of Notification Hub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/Delete\",\r\n \"displayName\": \"Delete Notification Hub\",\r\n \"description\": \"Delete Notification Hub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/action\",\r\n \"displayName\": \"Get Notification Hub Authorization Rules\",\r\n \"description\": \"Get the list of Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/pnsCredentials/action\",\r\n \"displayName\": \"Get Notification Hub PNS Credentials\",\r\n \"description\": \"Get All Notification Hub PNS Credentials. This includes, WNS, MPNS, APNS, GCM and Baidu credentials\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Namespaces/NotificationHubs/authorizationRules\",\r\n \"displayName\": \"NotificationHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Notification hub Authorization Rule\",\r\n \"description\": \"Create Notification Hub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete Notification Hub Authorization Rules\",\r\n \"description\": \"Delete Notification Hub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/NotificationHubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Notification Hub Listkeys\",\r\n \"description\": \"Get the Connection String to the Notification Hub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.NotificationHubs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.NotificationHubs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Scheduler\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"jobcollections\",\r\n \"displayName\": \"Job Collection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/read\",\r\n \"displayName\": \"Get Job Collection\",\r\n \"description\": \"Get Job Collection\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/write\",\r\n \"displayName\": \"Create Job Collection\",\r\n \"description\": \"Creates or updates job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/delete\",\r\n \"displayName\": \"Delete Job Collection\",\r\n \"description\": \"Deletes job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/enable/action\",\r\n \"displayName\": \"Enable Job Collection\",\r\n \"description\": \"Enables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/disable/action\",\r\n \"displayName\": \"Disable Job Collection\",\r\n \"description\": \"Disables job collection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs\",\r\n \"displayName\": \"Job\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/read\",\r\n \"displayName\": \"Get Job\",\r\n \"description\": \"Gets job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/write\",\r\n \"displayName\": \"Create Job\",\r\n \"description\": \"Creates or updates job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/delete\",\r\n \"displayName\": \"Delete Job\",\r\n \"description\": \"Deletes job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/run/action\",\r\n \"displayName\": \"Run Job\",\r\n \"description\": \"Runs job.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"jobcollections/jobs/jobhistories\",\r\n \"displayName\": \"Job History\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/jobhistories/read\",\r\n \"displayName\": \"Get Job History\",\r\n \"description\": \"Gets job history.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Scheduler\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Scheduler\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Data Factory\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"datafactories\",\r\n \"displayName\": \"Data Factory\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/read\",\r\n \"displayName\": \"Read Data Factory\",\r\n \"description\": \"Reads Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/write\",\r\n \"displayName\": \"Create or Update any Data Factory.\",\r\n \"description\": \"Create or Update Data Factory\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/delete\",\r\n \"displayName\": \"Delete Data Factory\",\r\n \"description\": \"Deletes Data Factory.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/datapipelines\",\r\n \"displayName\": \"Pipeline\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/read\",\r\n \"displayName\": \"Read Pipeline\",\r\n \"description\": \"Reads Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/delete\",\r\n \"displayName\": \"Delete Pipeline\",\r\n \"description\": \"Deletes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/pause/action\",\r\n \"displayName\": \"Puase Pipeline\",\r\n \"description\": \"Pauses Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/resume/action\",\r\n \"displayName\": \"Resume Pipeline\",\r\n \"description\": \"Resumes Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/update/action\",\r\n \"displayName\": \"Update Pipeline\",\r\n \"description\": \"Updates Pipeline.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/datapipelines/write\",\r\n \"displayName\": \"Create or Update any Pipeline.\",\r\n \"description\": \"Create or Update Pipeline\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/linkedServices\",\r\n \"displayName\": \"Linked service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/read\",\r\n \"displayName\": \"Read Linked service\",\r\n \"description\": \"Reads Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/delete\",\r\n \"displayName\": \"Delete Linked service\",\r\n \"description\": \"Deletes Linked service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/linkedServices/write\",\r\n \"displayName\": \"Create or Update any Linked service.\",\r\n \"description\": \"Create or Update Linked service\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"datafactories/{resourceTypeName:regex(^(tables|datasets)$)}\",\r\n \"displayName\": \"Table\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/read\",\r\n \"displayName\": \"Read Table\",\r\n \"description\": \"Reads Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/delete\",\r\n \"displayName\": \"Delete Table\",\r\n \"description\": \"Deletes Table.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/datafactories/{resourceTypeName:regex(^(tables|datasets)$)}/write\",\r\n \"displayName\": \"Create or Update any Table.\",\r\n \"description\": \"Create or Update Table\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataFactory\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataFactory\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Web Apps\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"sites\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/Read\",\r\n \"displayName\": \"Get Web Apps\",\r\n \"description\": \"Get the list of Web Apps.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Write\",\r\n \"displayName\": \"Create or Update Web App\",\r\n \"description\": \"Create a new Web App or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/Delete\",\r\n \"displayName\": \"Delete Web App\",\r\n \"description\": \"Delete an existing Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App\",\r\n \"description\": \"List publishing profile xml for Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/restart/Action\",\r\n \"displayName\": \"Restart Web App\",\r\n \"description\": \"Restart Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/start/Action\",\r\n \"displayName\": \"Start Web App\",\r\n \"description\": \"Start Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/stop/Action\",\r\n \"displayName\": \"Stop Web App\",\r\n \"description\": \"Stop Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App with a slot\",\r\n \"description\": \"Swap Web App with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/Write\",\r\n \"displayName\": \"Create Web App Backup\",\r\n \"description\": \"Create new web app backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/backup/config\",\r\n \"displayName\": \"Web App Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Read\",\r\n \"displayName\": \"List Web App Backup Configurations\",\r\n \"description\": \"List all Web App backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/backup/config/Write\",\r\n \"displayName\": \"Update Web App Backup Configuration\",\r\n \"description\": \"Update Web App backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slotsdiffs\",\r\n \"displayName\": \"Web App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Write\",\r\n \"displayName\": \"Create or Update Web App Slot\",\r\n \"description\": \"Create a new Web App Slot or update existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/Delete\",\r\n \"displayName\": \"Delete Web App Slot\",\r\n \"description\": \"Delete an existing Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publishxml/Action\",\r\n \"displayName\": \"List Publishing Profile for Web App Slot\",\r\n \"description\": \"List publishing profile xml for Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"displayName\": \"Restart Web App Slot\",\r\n \"description\": \"Restart Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/start/Action\",\r\n \"displayName\": \"Start Web App Slot\",\r\n \"description\": \"Start Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"displayName\": \"Stop Web App Slot\",\r\n \"description\": \"Stop Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"displayName\": \"Swap Web App Slot with another slot\",\r\n \"description\": \"Swap Web App Slot with another slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/applySlotConfig/Action\",\r\n \"displayName\": \"Apply Web App Slot Configuration\",\r\n \"description\": \"Apply web app slot configuration from target slot to the current slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/resetSlotConfig/Action\",\r\n \"displayName\": \"Reset Web App Slot Configuration\",\r\n \"description\": \"Rest web app slot configuration.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Action\",\r\n \"displayName\": \"List Web App Slot Backup Configurations\",\r\n \"description\": \"List all Web App Slot backup configurations.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/Write\",\r\n \"displayName\": \"Create Web App Slot Backup\",\r\n \"description\": \"Create new Web App Slot backup.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/backup/config\",\r\n \"displayName\": \"Web App Slot Backup Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/backup/config/Write\",\r\n \"displayName\": \"Update Web App Slot Backup Configuration\",\r\n \"description\": \"Update Web App Slot backup configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/slotsdiffs\",\r\n \"displayName\": \"Web App Slot\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotsdiffs/Read\",\r\n \"displayName\": \"Get Web App Slots Differences\",\r\n \"description\": \"Get web app slots differences.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/appsettings\",\r\n \"displayName\": \"Web App Slot AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's AppSettings\",\r\n \"description\": \"Get Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App Slot's AppSettings\",\r\n \"description\": \"Update Web App Slot's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/logs\",\r\n \"displayName\": \"Web App Slot Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Read\",\r\n \"displayName\": \"Get Web App Slot's Logs Config\",\r\n \"description\": \"Get Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs/Write\",\r\n \"displayName\": \"Update Web App Slot's Logs Config\",\r\n \"description\": \"Update Web App Slot's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/publishingcredentials\",\r\n \"displayName\": \"Web App Slot Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App Slot's publishing credentials\",\r\n \"description\": \"List Web App Slot's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/connectionstrings\",\r\n \"displayName\": \"Web App Slot Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App Slot's connection strings\",\r\n \"description\": \"Get Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App Slot's connection strings\",\r\n \"description\": \"Update Web App Slot's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/web\",\r\n \"displayName\": \"Web App Slot Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Read\",\r\n \"displayName\": \"Get Web App Slot's configuration\",\r\n \"description\": \"Get Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web/Write\",\r\n \"displayName\": \"Update Web App Slot's configuration\",\r\n \"description\": \"Update Web App Slot's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/config/metadata\",\r\n \"displayName\": \"Web App Slot Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App Slot's metadata\",\r\n \"description\": \"List Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/metadata/Write\",\r\n \"displayName\": \"Update Web App Slot's metadata\",\r\n \"description\": \"Update Web App Slot's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/sourcecontrols/web\",\r\n \"displayName\": \"Web App Slot Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App Slot's source control configuration\",\r\n \"description\": \"Get Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App Slot's source control configuration\",\r\n \"description\": \"Update Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App Slot's source control configuration\",\r\n \"description\": \"Delete Web App Slot's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/slots/restore\",\r\n \"displayName\": \"Web App Slot Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/restore/Read\",\r\n \"displayName\": \"List Web App Slot Backups\",\r\n \"description\": \"List all backups for a Web App Slot.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/appsettings\",\r\n \"displayName\": \"Web App AppSettings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/list/Action\",\r\n \"displayName\": \"Get Web App's AppSettings\",\r\n \"description\": \"Get Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appsettings/Write\",\r\n \"displayName\": \"Update Web App's AppSettings\",\r\n \"description\": \"Update Web App's AppSettings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/logs\",\r\n \"displayName\": \"Web App Logs Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Read\",\r\n \"displayName\": \"Get Web App's Logs Config\",\r\n \"description\": \"Get Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs/Write\",\r\n \"displayName\": \"Update Web App's Logs Config\",\r\n \"description\": \"Update Web App's Logs Config properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/publishingcredentials\",\r\n \"displayName\": \"Web App Publishing Credentials\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingcredentials/list/Action\",\r\n \"displayName\": \"List Web App's publishing credentials\",\r\n \"description\": \"List Web App's publishing username and password.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/connectionstrings\",\r\n \"displayName\": \"Web App Connection Strings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/list/Action\",\r\n \"displayName\": \"Get Web App's connection strings\",\r\n \"description\": \"Get Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionstrings/Write\",\r\n \"displayName\": \"Update Web App's connection strings\",\r\n \"description\": \"Update Web App's connection strings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/web\",\r\n \"displayName\": \"Web App Config\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Read\",\r\n \"displayName\": \"Get Web App's configuration\",\r\n \"description\": \"Get Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web/Write\",\r\n \"displayName\": \"Update Web App's configuration\",\r\n \"description\": \"Update Web App's configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/config/metadata\",\r\n \"displayName\": \"Web App Metadata\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/list/Action\",\r\n \"displayName\": \"List Web App's metadata\",\r\n \"description\": \"List Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata/Write\",\r\n \"displayName\": \"Update Web App's metadata\",\r\n \"description\": \"Update Web App's metadata properties.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/sourcecontrols/web\",\r\n \"displayName\": \"Web App Source Control\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Read\",\r\n \"displayName\": \"Get Web App's source control configuration\",\r\n \"description\": \"Get Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Write\",\r\n \"displayName\": \"Update Web App's source control configuration\",\r\n \"description\": \"Update Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web/Delete\",\r\n \"displayName\": \"Delete Web App's source control configuration\",\r\n \"description\": \"Delete Web App's source control configuration settings.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"sites/restore\",\r\n \"displayName\": \"Web App Backup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/restore/Read\",\r\n \"displayName\": \"List Web App Backups\",\r\n \"description\": \"List all backups for a Web App.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"serverfarms\",\r\n \"displayName\": \"App Service Plan\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Read\",\r\n \"displayName\": \"Get App Service Plans\",\r\n \"description\": \"Get the list of App Service Plans.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Write\",\r\n \"displayName\": \"Create or Update App Service Plans\",\r\n \"description\": \"Create a new App Service Plan or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/Delete\",\r\n \"displayName\": \"Delete App Service Plan\",\r\n \"description\": \"Delete an existing App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/restartSites/Action\",\r\n \"displayName\": \"Restart Web Apps\",\r\n \"description\": \"Restart Web Apps in an App Service Plan.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"certificates\",\r\n \"displayName\": \"Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Read\",\r\n \"displayName\": \"Get Certificates\",\r\n \"description\": \"Get the list of certificates.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Write\",\r\n \"displayName\": \"Add or Update Certificate\",\r\n \"description\": \"Add a new certificate or update an existing one.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/Delete\",\r\n \"displayName\": \"Delete Certificate\",\r\n \"description\": \"Delete an existing certificate.\",\r\n \"origin\": \"user,system\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Web\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Web\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"vaults\",\r\n \"displayName\": \"Key Vault\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/read\",\r\n \"displayName\": \"View Key Vault\",\r\n \"description\": \"View the properties of a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/write\",\r\n \"displayName\": \"Update Key Vault\",\r\n \"description\": \"Create a new key vault or update the properties of an existing key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/delete\",\r\n \"displayName\": \"Delete Key Vault\",\r\n \"description\": \"Delete a key vault\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"displayName\": \"Use Vault for Virtual Machines\",\r\n \"description\": \"Enables access to secrets in a key vault when deploying a virtual machine\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Key Vault Diagnostic Settings\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Read\",\r\n \"displayName\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Write\",\r\n \"displayName\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\",\r\n \"origin\": \"system\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/providers/Microsoft.Insights/logDefinitions\",\r\n \"displayName\": \"Key Vault Log Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"displayName\": \"Read log definition\",\r\n \"description\": \"Gets the available logs for Key Vault\",\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AuditEvent\",\r\n \"displayName\": \"Audit Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vaults/secrets\",\r\n \"displayName\": \"Secret\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"displayName\": \"View Secret Properties\",\r\n \"description\": \"View the properties of a secret, but not its value\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"displayName\": \"Update Secret\",\r\n \"description\": \"Create a new secret or update the value of an existing secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/delete\",\r\n \"displayName\": \"Delete Secret\",\r\n \"description\": \"Delete a secret\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.KeyVault\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.KeyVault\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft AppService\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"appidentities\",\r\n \"displayName\": \"App Identity\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Read\",\r\n \"displayName\": \"Get App Identity\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Write\",\r\n \"displayName\": \"Create App Identity\",\r\n \"description\": \"Creates a new App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/appidentities/Delete\",\r\n \"displayName\": \"Delete App Identity\",\r\n \"description\": \"Deletes an existing App Identity.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deploymenttemplates\",\r\n \"displayName\": \"Deployment Template\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/listMetadata/Action\",\r\n \"displayName\": \"List UI Metadata\",\r\n \"description\": \"Lists UI Metadata associated with the API App package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/deploymenttemplates/generate/Action\",\r\n \"displayName\": \"Generate Deployment Template\",\r\n \"description\": \"Returns a Deployment Template to provision API App instance(s).\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways\",\r\n \"displayName\": \"Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Read\",\r\n \"displayName\": \"Get Gateway\",\r\n \"description\": \"Returns the Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Write\",\r\n \"displayName\": \"Create or Update Gateway\",\r\n \"description\": \"Creates a new Gateway or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/Delete\",\r\n \"displayName\": \"Delete Gateway\",\r\n \"description\": \"Deletes an existing Gateway instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listLoginUris/Action\",\r\n \"displayName\": \"List Login URIs\",\r\n \"description\": \"Populates token store and returns OAuth login URIs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/listKeys/Action\",\r\n \"displayName\": \"List Gateway Secrets\",\r\n \"description\": \"Returns Gateway secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/tokens\",\r\n \"displayName\": \"Zumo Token\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/tokens/Write\",\r\n \"displayName\": \"Create Zumo Token\",\r\n \"description\": \"Creates a new Zumo Token with the given name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"gateways/registrations\",\r\n \"displayName\": \"Gateway Registration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Read\",\r\n \"displayName\": \"Get Registered Resource\",\r\n \"description\": \"Returns the resource (web site) registered with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Write\",\r\n \"displayName\": \"Register Resource\",\r\n \"description\": \"Registers a resource (web site) with the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/gateways/registrations/Delete\",\r\n \"displayName\": \"Unregister Resource\",\r\n \"description\": \"Unregisters a resource (web site) from the Gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps\",\r\n \"displayName\": \"API App\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Read\",\r\n \"displayName\": \"Get API App\",\r\n \"description\": \"Returns the API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Write\",\r\n \"displayName\": \"Create or Update API App\",\r\n \"description\": \"Creates a new API App or updates existing one.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/Delete\",\r\n \"displayName\": \"Delete API App\",\r\n \"description\": \"Deletes an existing API App instance.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listStatus/Action\",\r\n \"displayName\": \"Get API App Status\",\r\n \"description\": \"Returns API App status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/listKeys/Action\",\r\n \"displayName\": \"List API App Secrets\",\r\n \"description\": \"Returns API App secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"apiapps/apidefinitions\",\r\n \"displayName\": \"API Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.AppService/apiapps/apidefinitions/Read\",\r\n \"displayName\": \"Get API App's API Definition\",\r\n \"description\": \"Returns API App's API definition.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.AppService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.AppService\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft DevTest Labs\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"labs\",\r\n \"displayName\": \"DevTest Labs\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/read\",\r\n \"displayName\": \"Read DevTest Labs.\",\r\n \"description\": \"Read DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/write\",\r\n \"displayName\": \"Add or modify DevTest Labs.\",\r\n \"description\": \"Add or modify DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/delete\",\r\n \"displayName\": \"Delete DevTest Labs.\",\r\n \"description\": \"Delete DevTest Labs.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"displayName\": \"Create an environment.\",\r\n \"description\": \"Create virtual machines or environments in a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/listVhds/action\",\r\n \"displayName\": \"List VHDs.\",\r\n \"description\": \"List disk images available for VM template creation.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/labStats/action\",\r\n \"displayName\": \"Get Lab Status\",\r\n \"description\": \"Get the number of environments and the limit of environments for the lab. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/getUploadUri/action\",\r\n \"displayName\": \"Get Image Upload URI.\",\r\n \"description\": \"Get a URI for uploading custom disk images to a lab.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/artifactSources\",\r\n \"displayName\": \"Artifact Sources\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/read\",\r\n \"displayName\": \"Read Artifact Sources.\",\r\n \"description\": \"Read Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/write\",\r\n \"displayName\": \"Add or modify Artifact Sources.\",\r\n \"description\": \"Add or modify Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/delete\",\r\n \"displayName\": \"Delete Artifact Sources.\",\r\n \"description\": \"Delete Artifact Sources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/policies\",\r\n \"displayName\": \"Policies\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/read\",\r\n \"displayName\": \"Read Policies.\",\r\n \"description\": \"Read Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/write\",\r\n \"displayName\": \"Add or modify Policies.\",\r\n \"description\": \"Add or modify Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policies/delete\",\r\n \"displayName\": \"Delete Policies.\",\r\n \"description\": \"Delete Policies.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"labs/vmtemplates\",\r\n \"displayName\": \"VM Templates\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/read\",\r\n \"displayName\": \"Read VM Templates.\",\r\n \"description\": \"Read VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/write\",\r\n \"displayName\": \"Add or modify VM Templates.\",\r\n \"description\": \"Add or modify VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmtemplates/delete\",\r\n \"displayName\": \"Delete VM Templates.\",\r\n \"description\": \"Delete VM Templates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"environments\",\r\n \"displayName\": \"Environments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/read\",\r\n \"displayName\": \"Read Environments.\",\r\n \"description\": \"Read Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/write\",\r\n \"displayName\": \"Add or modify Environments.\",\r\n \"description\": \"Add or modify Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/environments/delete\",\r\n \"displayName\": \"Delete Environments.\",\r\n \"description\": \"Delete Environments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DevTestLab\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DevTestLab\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Azure EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"displayName\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"namespaces\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"displayName\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"displayName\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"displayName\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"displayName\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/authorizationRules\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"displayName\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"displayName\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"displayName\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"displayName\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"displayName\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"displayName\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"displayName\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventHubs/consumergroups\",\r\n \"displayName\": \"ConsumerGroup\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"displayName\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"displayName\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"displayName\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/eventhubs/authorizationRules\",\r\n \"displayName\": \"EventHub\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"displayName\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"displayName\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"displayName\": \" Get EventHub Listkeys\",\r\n \"description\": \"Get the Connection String to EventHub\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"namespaces/messagingplan\",\r\n \"displayName\": \"Namespace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/read\",\r\n \"displayName\": \"Get Namespace MessagingSKUPlan\",\r\n \"description\": \"Gets the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingplan/write\",\r\n \"displayName\": \"Update Namespace MessagingSKUPlan.\",\r\n \"description\": \"Updates the messagingSKUPlan for the namespace.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.EventHub\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.EventHub\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services (LCS)\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"lcsprojects\",\r\n \"displayName\": \"Microsoft Dynamics Lifecycle Services project\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/read\",\r\n \"displayName\": \"Read LCS projects\",\r\n \"description\": \"Display Microsoft Dynamics Lifecycle Services projects that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/write\",\r\n \"displayName\": \"Create and update LCS projects\",\r\n \"description\": \"Create and update Microsoft Dynamics Lifecycle Services projects that belong to the user. Only the name and description properties can be updated. The subscription and location associated with the project cannot be updated after creation\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/delete\",\r\n \"displayName\": \"Delete LCS projects\",\r\n \"description\": \"Delete Microsoft Dynamics Lifecycle Services projects that belong to the user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"lcsprojects/clouddeployments\",\r\n \"displayName\": \"Microsoft Dynamics AX 2012 deployments\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/read\",\r\n \"displayName\": \"Read Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Display Microsoft Dynamics AX 2012 R3 Evaluation deployments in a Microsoft Dynamics Lifecycle Services project that belong to a user\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.DynamicsLcs/lcsprojects/clouddeployments/write\",\r\n \"displayName\": \"Create Microsoft Dynamics AX 2012 deployments\",\r\n \"description\": \"Create Microsoft Dynamics AX 2012 R3 Evaluation deployment in a Microsoft Dynamics Lifecycle Services project that belong to a user. Deployments can be managed from Azure management portal\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DynamicsLcs\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DynamicsLcs\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Resources\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"marketplace\",\r\n \"displayName\": \"Marketplace\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/marketplace/purchase/action\",\r\n \"displayName\": \"Purchase Resource\",\r\n \"description\": \"Purchases a resource from the marketplace.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions\",\r\n \"displayName\": \"Subscription\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/read\",\r\n \"displayName\": \"Get Subscriptions\",\r\n \"description\": \"Gets the list of subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/providers\",\r\n \"displayName\": \"Resource Providers\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"displayName\": \"Get Resource Providers\",\r\n \"description\": \"Gets or lists resource providers.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames\",\r\n \"displayName\": \"Subscription Tag\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/read\",\r\n \"displayName\": \"Get Subscription Tag\",\r\n \"description\": \"Gets or lists subscription tags.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/write\",\r\n \"displayName\": \"Add Subscription Tag\",\r\n \"description\": \"Adds a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/delete\",\r\n \"displayName\": \"Delete Subscription Tag\",\r\n \"description\": \"Deletes a subscription tag.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/tagNames/tagValues\",\r\n \"displayName\": \"Subscription Tag Value\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/read\",\r\n \"displayName\": \"Get Subscription Tag Value\",\r\n \"description\": \"Gets or lists subscription tag values.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/write\",\r\n \"displayName\": \"Add Subscription Tag Value\",\r\n \"description\": \"Adds a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/tagNames/tagValues/delete\",\r\n \"displayName\": \"Delete Subscription Tag Value\",\r\n \"description\": \"Deletes a subscription tag value.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resources\",\r\n \"displayName\": \"Subscription Resource\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"displayName\": \"Get Subscription Resources\",\r\n \"description\": \"Gets resources of a subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/resourceGroups\",\r\n \"displayName\": \"Resource Group\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"displayName\": \"Get Resource Group\",\r\n \"description\": \"Gets or lists resource groups.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"displayName\": \"Create Resource Group\",\r\n \"description\": \"Creates or updates a resource group.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"displayName\": \"Delete Resource Group\",\r\n \"description\": \"Deletes a resource group and all its resources.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"displayName\": \"Move Resource Group Resources\",\r\n \"description\": \"Moves resources from one resource group to another.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"subscriptions/locations\",\r\n \"displayName\": \"Location\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/subscriptions/locations/read\",\r\n \"displayName\": \"Get Locations\",\r\n \"description\": \"Gets the list of locations supported.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"links\",\r\n \"displayName\": \"Resource Link\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/links/read\",\r\n \"displayName\": \"Get Resource Link\",\r\n \"description\": \"Gets or lists resource links.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/write\",\r\n \"displayName\": \"Create Resource Link\",\r\n \"description\": \"Creates or updates a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/delete\",\r\n \"displayName\": \"Delete Resource Link\",\r\n \"description\": \"Deletes a resource link.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"tenants\",\r\n \"displayName\": \"Tenant\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/tenants/read\",\r\n \"displayName\": \"Get Tenants\",\r\n \"description\": \"Gets the list of tenants.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments\",\r\n \"displayName\": \"Deployment\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/read\",\r\n \"displayName\": \"Get Deployment\",\r\n \"description\": \"Gets or lists deployments.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/write\",\r\n \"displayName\": \"Create Deployment\",\r\n \"description\": \"Creates or updates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/delete\",\r\n \"displayName\": \"Delete Deployment\",\r\n \"description\": \"Deletes a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/cancel/action\",\r\n \"displayName\": \"Cancel Deployment\",\r\n \"description\": \"Cancels a deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/validate/action\",\r\n \"displayName\": \"Validate Deployment\",\r\n \"description\": \"Validates an deployment.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"deployments/operations\",\r\n \"displayName\": \"Deployment Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Resources/deployments/operations/read\",\r\n \"displayName\": \"Get Deployment Operation\",\r\n \"description\": \"Gets or lists deployment operations.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Resources\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Resources\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Support\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"supportTickets\",\r\n \"displayName\": \"Support Ticket\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/read\",\r\n \"displayName\": \"Reads Support Ticket\",\r\n \"description\": \"Gets Support Ticket details (including status, severity, contact details and communications) or gets the list of Support Tickets across subscriptions.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n },\r\n {\r\n \"name\": \"Microsoft.Support/supportTickets/write\",\r\n \"displayName\": \"Writes Support Ticket\",\r\n \"description\": \"Creates or Updates a Support Ticket. You can create a Support Ticket for Technical, Billing, Quotas or Subscription Management related issues. You can update severity, contact details and communications for existing support tickets.\",\r\n \"origin\": null,\r\n \"properties\": {}\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.support\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.support\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Logic\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"workflows\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"displayName\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"displayName\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"displayName\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"displayName\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"displayName\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"displayName\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"displayName\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"displayName\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunRate\",\r\n \"displayName\": \"Run Rate\",\r\n \"displayDescription\": \"Rate of workflow run.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RunSuccessPercentage\",\r\n \"displayName\": \"Run Success Percentage\",\r\n \"displayDescription\": \"Percentage of succeeded workflow runs over completed workflow runs.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/versions\",\r\n \"displayName\": \"Workflow\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"displayName\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs\",\r\n \"displayName\": \"Workflow Run\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"displayName\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"displayName\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/actions\",\r\n \"displayName\": \"Workflow Run Action\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"displayName\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/runs/operations\",\r\n \"displayName\": \"Workflow Run Operation\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"displayName\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers\",\r\n \"displayName\": \"Trigger\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"displayName\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"displayName\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Trigger Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Trigger Metric Definition\",\r\n \"description\": \"Reads workflow trigger metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerRate\",\r\n \"displayName\": \"Trigger Rate \",\r\n \"displayDescription\": \"Rate of workflow trigger.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSuccessPercentage\",\r\n \"displayName\": \"Trigger Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow triggers over completed workflow trigger.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerSkipPercentage\",\r\n \"displayName\": \"Trigger Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TriggerFirePercentage\",\r\n \"displayName\": \"Trigger Fire Percentage \",\r\n \"displayDescription\": \"Percentage of fired workflow triggers over completed workflow triggers.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Trigger Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Reads the workflow trigger diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Trigger Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow trigger diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/triggers/histories\",\r\n \"displayName\": \"Trigger Histories\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"displayName\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/accessKeys\",\r\n \"displayName\": \"Access Key\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"displayName\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"displayName\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"displayName\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"displayName\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"displayName\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/metricDefinitions\",\r\n \"displayName\": \"Workflow Action Metric Definition\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"displayName\": \"Get Workflow Action Metric Definition\",\r\n \"description\": \"Reads workflow action metric definitions.\",\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionRate\",\r\n \"displayName\": \"Action Rate\",\r\n \"displayDescription\": \"Rate of workflow action.\",\r\n \"unit\": \"CountPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSuccessPercentage\",\r\n \"displayName\": \"Action Success Percentage \",\r\n \"displayDescription\": \"Percentage of succeeded workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ActionSkipPercentage\",\r\n \"displayName\": \"Action Skip Percentage\",\r\n \"displayDescription\": \"Percentage of skipped workflow actions over completed workflow actions.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"workflows/actions/providers/Microsoft.Insights/diagnosticSettings\",\r\n \"displayName\": \"Workflow Action Diagnostic Setting\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"displayName\": \"Get Workflow Action Diagnostic Setting\",\r\n \"description\": \"Reads the workflow action diagnostic settings.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/actions/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"displayName\": \"Set Workflow Action Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow action diagnostic setting.\",\r\n \"origin\": \"System\",\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Logic\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Logic\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ClassicNetwork\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"gatewaySupportedDevices\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/gatewaySupportedDevices/read\",\r\n \"displayName\": \"List Supported Devices\",\r\n \"description\": \"Retrieves the list of supported devices.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps\",\r\n \"displayName\": \"Reserved Ip\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"displayName\": \"Get Reserved Ips\",\r\n \"description\": \"Gets the reserved Ips\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/write\",\r\n \"displayName\": \"Add Reserved Ip\",\r\n \"description\": \"Add a new reserved Ip\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/delete\",\r\n \"displayName\": \"Delete Reserved Ip\",\r\n \"description\": \"Delete a reserved Ip.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"reservedIps/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/reservedIps/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks\",\r\n \"displayName\": \"Virtual Network\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"displayName\": \"Get Virtual Network\",\r\n \"description\": \"Get the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/write\",\r\n \"displayName\": \"Add Virtual Network\",\r\n \"description\": \"Add a new virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/delete\",\r\n \"displayName\": \"Delete Virtual Network.\",\r\n \"description\": \"Deletes the virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/checkIPAddressAvailability/action\",\r\n \"displayName\": \"Availability of an IP address in a given virtual network.\",\r\n \"description\": \"Checks the availability of a given IP address in a virtual network.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/capabilities\",\r\n \"displayName\": \"Capability\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/capabilities/read\",\r\n \"displayName\": \"Get capabilities\",\r\n \"description\": \"Shows the capabilities\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways\",\r\n \"displayName\": \"Virtual Network Gateway\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/read\",\r\n \"displayName\": \"Get Virtual Network Gateways\",\r\n \"description\": \"Gets the virtual network gateways.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/write\",\r\n \"displayName\": \"Add Virtual Network Gateway\",\r\n \"description\": \"Adds a virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/delete\",\r\n \"displayName\": \"Delete Virtual Network Gateway\",\r\n \"description\": \"Deletes the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/startDiagnostics/action\",\r\n \"displayName\": \"Start Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Starts diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/stopDiagnostics/action\",\r\n \"displayName\": \"Stop Virtual Network Gateway Diagnostic\",\r\n \"description\": \"Stops the diagnositic for the virtual network gateway.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDiagnostics/action\",\r\n \"displayName\": \"Download Gateway Diagnostics\",\r\n \"description\": \"Downloads the gateway diagnostics.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listCircuitServiceKey/action\",\r\n \"displayName\": \"Get Circuit Service Key\",\r\n \"description\": \"Retrieves the circuit service key.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/downloadDeviceConfigurationScript/action\",\r\n \"displayName\": \"Download Configuration Script\",\r\n \"description\": \"Downloads the device configuration script.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/listPackage/action\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/operationStatuses\",\r\n \"displayName\": \"Operation Status\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/operationStatuses/read\",\r\n \"displayName\": \"Get The Operation Status\",\r\n \"description\": \"Reads the operation status for the resource.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/packages\",\r\n \"displayName\": \"Virtual Network Gateway Package\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/packages/read\",\r\n \"displayName\": \"Get Virtual Network Gateway Package\",\r\n \"description\": \"Gets the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/connections\",\r\n \"displayName\": \"Gateway Connection\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/read\",\r\n \"displayName\": \"Get Conection List\",\r\n \"description\": \"Retrieves the list of connections.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/connect/action\",\r\n \"displayName\": \"Connect Gateway Connection\",\r\n \"description\": \"Connects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/disconnect/action\",\r\n \"displayName\": \"Disconnect Gateway Connection\",\r\n \"description\": \"Disconnects a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/connections/test/action\",\r\n \"displayName\": \"Test Gateway Connection\",\r\n \"description\": \"Tests a site to site gateway connection.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRevokedCertificates\",\r\n \"displayName\": \"Geteway Client Revoked Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/read\",\r\n \"displayName\": \"Get Revoked Certificates.\",\r\n \"description\": \"Read the revoked client certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/write\",\r\n \"displayName\": \"Revoke Client Certificate\",\r\n \"description\": \"Revokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRevokedCertificates/delete\",\r\n \"displayName\": \"Unrevoke Client Certificate.\",\r\n \"description\": \"Unrevokes a client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualNetworks/gateways/clientRootCertificates\",\r\n \"displayName\": \"Geteway Client Certificate\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/read\",\r\n \"displayName\": \"Get Client Root Certificates.\",\r\n \"description\": \"Find the client root certificates.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/write\",\r\n \"displayName\": \"Upload Client Root Certificate\",\r\n \"description\": \"Uploads a new client root certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/delete\",\r\n \"displayName\": \"Delete Client Root Certificate.\",\r\n \"description\": \"Deletes the virtual network gateway client certificate.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/download/action\",\r\n \"displayName\": \"Downloads Certificate\",\r\n \"description\": \"Downloads certificate by thumbprint.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/virtualNetworks/gateways/clientRootCertificates/listPackage/action\",\r\n \"displayName\": \"List Virtual Network Gateway\",\r\n \"description\": \"Lists the virtual network gateway package.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"quotas\",\r\n \"displayName\": \"Quota\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ClassicNetwork/quotas/read\",\r\n \"displayName\": \"Get Subscription Quota\",\r\n \"description\": \"Get the quota for the subscription.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ClassicNetwork\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ClassicNetwork\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft Marketplace Ordering\",\r\n \"operations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"agreements/offers/plans\",\r\n \"displayName\": \"Agreement\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/read\",\r\n \"displayName\": \"Get Agreement\",\r\n \"description\": \"Return an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/sign/action\",\r\n \"displayName\": \"Sign Agreement\",\r\n \"description\": \"Sign an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.MarketplaceOrdering/agreements/offers/plans/cancel/action\",\r\n \"displayName\": \"Cancel Agreement\",\r\n \"description\": \"Cancel an agreement for a given marketplace item\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.MarketplaceOrdering\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.MarketplaceOrdering\"\r\n },\r\n {\r\n \"displayName\": \"Microsoft ADHybridHealthService\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/action\",\r\n \"displayName\": \"Updates Tenant Configuration\",\r\n \"description\": \"Updates Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/action\",\r\n \"displayName\": \"Updates a service\",\r\n \"description\": \"Updates a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"name\": \"configuration\",\r\n \"displayName\": \"Tenant Configuration\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/write\",\r\n \"displayName\": \"Creates a new Tenant\",\r\n \"description\": \"Creates a Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"displayName\": \"Reads Tenant Configuration\",\r\n \"description\": \"Reads the Tenant Configuration.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services\",\r\n \"displayName\": \"Service\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/write\",\r\n \"displayName\": \"Creates a service\",\r\n \"description\": \"Creates a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/read\",\r\n \"displayName\": \"Reads services\",\r\n \"description\": \"Reads the service instances in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/delete\",\r\n \"displayName\": \"Deletes service\",\r\n \"description\": \"Deletes a service instance in the tenant.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/action\",\r\n \"displayName\": \"Creates a service member\",\r\n \"description\": \"Creates a service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/servicemembers\",\r\n \"displayName\": \"Service Member\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"displayName\": \"Reads a service member\",\r\n \"description\": \"Reads the service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/delete\",\r\n \"displayName\": \"Deletes service member\",\r\n \"description\": \"Deletes a service member instance in the service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/servicemembers/alerts\",\r\n \"displayName\": \"Alert\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"displayName\": \"Reads the service member alerts\",\r\n \"description\": \"Reads the alerts for a service member.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"services/alerts\",\r\n \"displayName\": \"Alert\",\r\n \"operations\": [\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"displayName\": \"Reads the service alerts\",\r\n \"description\": \"Reads the alerts for a service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"displayName\": \"Reads the service alerts\",\r\n \"description\": \"Reads the alerts for a service.\",\r\n \"origin\": null,\r\n \"properties\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.ADHybridHealthService\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.ADHybridHealthService\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/NewRelic.APM\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"NewRelic.APM\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Devices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Devices\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLakeAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLakeAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BigAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BigAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Sendgrid.Email\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Sendgrid.Email\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Compute\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Features\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Features\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Batch\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Batch\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLake\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLake\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/microsoft.visualstudio\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"microsoft.visualstudio\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataConnect\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataConnect\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Cdn\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Cdn\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.Kona\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.Kona\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/SuccessBricks.ClearDB\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"SuccessBricks.ClearDB\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.StreamAnalytics\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.StreamAnalytics\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.DataLakeStore\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.DataLakeStore\"\r\n },\r\n {\r\n \"displayName\": null,\r\n \"operations\": [],\r\n \"resourceTypes\": [],\r\n \"id\": \"/providers/Microsoft.Authorization/providerOperations/Microsoft.BizTalkServices\",\r\n \"type\": \"Microsoft.Authorization/providerOperations\",\r\n \"name\": \"Microsoft.BizTalkServices\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "268154" + "271543" ], "Content-Type": [ "application/json; charset=utf-8" @@ -88,10 +88,10 @@ "no-cache" ], "x-ms-request-id": [ - "5a227474-b7eb-48d5-80f6-57ae7836f781" + "a498d072-c0b4-4d64-9324-74efa981e87c" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -100,22 +100,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "f429422d-a1a1-498c-a0a1-bca893cb84cb" + "93587320-90ba-4039-b7b1-ef89f98e24c3" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:f429422d-a1a1-498c-a0a1-bca893cb84cb" + "WESTUS:20151021T024631Z:93587320-90ba-4039-b7b1-ef89f98e24c3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:41 GMT" + "Wed, 21 Oct 2015 02:46:30 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -151,10 +151,10 @@ "no-cache" ], "x-ms-request-id": [ - "f2cb566d-d4e0-49d3-9c95-2141c5445eef" + "c76fa605-9390-4f01-bf81-dc10d8b99b52" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -163,22 +163,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14996" + "14995" ], "x-ms-correlation-request-id": [ - "a825d71b-e911-4ba7-b402-a43323dc0b3b" + "a302e149-8033-455f-9ed6-59c7e7f14ec6" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012841Z:a825d71b-e911-4ba7-b402-a43323dc0b3b" + "WESTUS:20151021T024630Z:a302e149-8033-455f-9ed6-59c7e7f14ec6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:41 GMT" + "Wed, 21 Oct 2015 02:46:30 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -214,7 +214,7 @@ "no-cache" ], "x-ms-request-id": [ - "ae795d23-5d4e-457c-977e-3b67afc17e33" + "a13ed8a8-b6ae-4f72-8338-13ff327f3a42" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_1" @@ -226,22 +226,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "7c363f0d-131f-434e-ac9f-b601fd1b993f" + "e63b3e67-8381-407f-aa2c-3421db3e338d" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:7c363f0d-131f-434e-ac9f-b601fd1b993f" + "WESTUS:20151021T024630Z:e63b3e67-8381-407f-aa2c-3421db3e338d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:41 GMT" + "Wed, 21 Oct 2015 02:46:30 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -277,7 +277,7 @@ "no-cache" ], "x-ms-request-id": [ - "70795846-7c87-4ece-9a78-262f5a2a5d67" + "5e924b46-7acd-42c8-ac50-1678fe8b72de" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_1" @@ -289,22 +289,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14995" + "14994" ], "x-ms-correlation-request-id": [ - "3a8d6202-4314-4f65-830d-7e5b0efb5e57" + "6d4a43d3-a8df-4f88-a416-69b036839967" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012841Z:3a8d6202-4314-4f65-830d-7e5b0efb5e57" + "WESTUS:20151021T024630Z:6d4a43d3-a8df-4f88-a416-69b036839967" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:41 GMT" + "Wed, 21 Oct 2015 02:46:30 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -340,10 +340,10 @@ "no-cache" ], "x-ms-request-id": [ - "36c7087a-ee07-42c4-9db7-eaf8f8027642" + "a9cadbd9-8d13-43da-b5f9-6f1c420b52e2" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -352,22 +352,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14991" ], "x-ms-correlation-request-id": [ - "9e3fcf96-bdb9-48f1-b9d1-20090c6f5f7a" + "9f3e72ff-6ce5-4515-9c3e-fa34d315a418" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:9e3fcf96-bdb9-48f1-b9d1-20090c6f5f7a" + "WESTUS:20151021T024631Z:9f3e72ff-6ce5-4515-9c3e-fa34d315a418" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:42 GMT" + "Wed, 21 Oct 2015 02:46:31 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -403,7 +403,7 @@ "no-cache" ], "x-ms-request-id": [ - "09e25eb1-8522-4af3-9f84-c257b7a8349b" + "b21f351c-aa7b-4f99-b248-e81ec04a224f" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -415,22 +415,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14990" ], "x-ms-correlation-request-id": [ - "0ec1a39c-6c97-4746-9595-360153afdbe6" + "525d6c1a-10dd-4c18-97b2-bff141e5a5a1" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:0ec1a39c-6c97-4746-9595-360153afdbe6" + "WESTUS:20151021T024631Z:525d6c1a-10dd-4c18-97b2-bff141e5a5a1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:42 GMT" + "Wed, 21 Oct 2015 02:46:31 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -466,10 +466,10 @@ "no-cache" ], "x-ms-request-id": [ - "b00fee21-3328-4a29-b172-f22877d3c7b5" + "c47c27f5-4ae8-4ac1-ac65-bc7e6b874e14" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -478,22 +478,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14989" ], "x-ms-correlation-request-id": [ - "7d8c41d0-57c4-4785-85d7-4d08859f1fb2" + "e1862110-ef32-4dbc-8932-baef58ed1a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:7d8c41d0-57c4-4785-85d7-4d08859f1fb2" + "WESTUS:20151021T024631Z:e1862110-ef32-4dbc-8932-baef58ed1a7b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:42 GMT" + "Wed, 21 Oct 2015 02:46:31 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -529,10 +529,10 @@ "no-cache" ], "x-ms-request-id": [ - "9b968f48-4565-48b2-8caa-b28db5f7646a" + "c10c8246-7dc3-454e-a7e6-bc4df7cf601c" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -541,22 +541,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14988" ], "x-ms-correlation-request-id": [ - "69e727fe-d769-49d5-827a-5ba6dd686bbf" + "53483487-c208-443c-8c58-34dce3a9c91b" ], "x-ms-routing-request-id": [ - "WESTUS:20151015T012842Z:69e727fe-d769-49d5-827a-5ba6dd686bbf" + "WESTUS:20151021T024631Z:53483487-c208-443c-8c58-34dce3a9c91b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 15 Oct 2015 01:28:42 GMT" + "Wed, 21 Oct 2015 02:46:31 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config index 7fc1417f42fc..309759e23b3f 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 13bff98ab78c..2846c64eb669 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ParameterSet.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ParameterSet.cs index ad2082f88557..2077da7b9734 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ParameterSet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ParameterSet.cs @@ -70,6 +70,8 @@ internal static class ParameterSet public const string RoleDefinitionName = "RoleDefinitionNameParameterSet"; + public const string RoleDefinitionId = "RoleDefinitionIdParameterSet"; + public const string RoleIdWithScopeAndObjectId = "RoleIdWithScopeAndObjectIdParameterSet"; public const string RoleDefinitionCustom = "RoleDefinitionCustomParameterSet"; diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs index ce7a450e4422..26d315439817 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs @@ -133,7 +133,7 @@ public PSRoleAssignment CreateRoleAssignment(FilterRoleAssignmentsOptions parame Guid principalId = ActiveDirectoryClient.GetObjectId(parameters.ADObjectFilter); Guid roleAssignmentId = RoleAssignmentNames.Count == 0 ? Guid.NewGuid() : RoleAssignmentNames.Dequeue(); string roleDefinitionId = !string.IsNullOrEmpty(parameters.RoleDefinitionName) - ? GetRoleRoleDefinition(parameters.RoleDefinitionName).Id + ? AuthorizationHelper.GetRoleDefinitionFullyQualifiedId(subscriptionId, GetRoleRoleDefinition(parameters.RoleDefinitionName).Id) : parameters.RoleDefinitionId; RoleAssignmentCreateParameters createParameters = new RoleAssignmentCreateParameters @@ -141,7 +141,7 @@ public PSRoleAssignment CreateRoleAssignment(FilterRoleAssignmentsOptions parame Properties = new RoleAssignmentProperties { PrincipalId = principalId, - RoleDefinitionId = AuthorizationHelper.GetRoleDefinitionFullyQualifiedId(subscriptionId, roleDefinitionId) + RoleDefinitionId = roleDefinitionId } }; @@ -315,14 +315,24 @@ public PSRoleDefinition RemoveRoleDefinition(Guid roleDefinitionId, string subsc PSRoleDefinition roleDefinition = this.GetRoleDefinition(roleDefinitionId); if (roleDefinition != null) { - AuthorizationManagementClient.RoleDefinitions.Delete(roleDefinitionFullyQualifiedId); + return AuthorizationManagementClient.RoleDefinitions.Delete(roleDefinitionFullyQualifiedId).RoleDefinition.ToPSRoleDefinition(); } else { throw new KeyNotFoundException(string.Format(ProjectResources.RoleDefinitionWithIdNotFound, id)); } + } - return roleDefinition; + /// + /// Deletes a role definition based on the name. + /// + /// The role definition name. + /// The deleted role definition. + public PSRoleDefinition RemoveRoleDefinition(string roleDefinitionName, string subscriptionId) + { + PSRoleDefinition roleDefinition = this.GetRoleRoleDefinition(roleDefinitionName); + string roleDefinitionFullyQualifiedId = AuthorizationHelper.GetRoleDefinitionFullyQualifiedId(subscriptionId, roleDefinition.Id); + return AuthorizationManagementClient.RoleDefinitions.Delete(roleDefinitionFullyQualifiedId).RoleDefinition.ToPSRoleDefinition(); } /// diff --git a/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.Designer.cs b/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.Designer.cs index 410642cab044..5f84e952e5ec 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:4.0.30319.34209 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -348,6 +348,24 @@ internal static string NoDeploymentWereFound { } } + /// + /// Looks up a localized string similar to To get all operations under {0}, please specify the search string as {0}/*.. + /// + internal static string OperationSearchStringInvalidProviderName { + get { + return ResourceManager.GetString("OperationSearchStringInvalidProviderName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Individual parts in the search string should either equal * or not contain *.. + /// + internal static string OperationSearchStringInvalidWildcard { + get { + return ResourceManager.GetString("OperationSearchStringInvalidWildcard", resourceCulture); + } + } + /// /// Looks up a localized string similar to Overriding the existing file.. /// @@ -366,6 +384,15 @@ internal static string PrincipalNotFound { } } + /// + /// Looks up a localized string similar to Wildcard character ? is not supported.. + /// + internal static string ProviderOperationUnsupportedWildcard { + get { + return ResourceManager.GetString("ProviderOperationUnsupportedWildcard", resourceCulture); + } + } + /// /// Looks up a localized string similar to Could not find a registered feature named '{0}' for the resource provider '{1}'.. /// diff --git a/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.resx b/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.resx index 77455be1d6a5..3f51101f355b 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.resx +++ b/src/ResourceManager/Resources/Commands.Resources/Properties/Resources.resx @@ -324,4 +324,13 @@ Role definition id should be a valid guid. + + To get all operations under {0}, please specify the search string as {0}/*. + + + Individual parts in the search string should either equal * or not contain *. + + + Wildcard character ? is not supported. + \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs index c7109f8d6c32..2c7b3dab5caf 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Commands.Resources using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.Azure.Management.Resources.Models; + using ProjectResources = Microsoft.Azure.Commands.Resources.Properties.Resources; /// /// Get an existing resource. @@ -28,13 +29,14 @@ namespace Microsoft.Azure.Commands.Resources public class GetAzureProviderOperationCommand : ResourcesBaseCmdlet { private const string WildCardCharacter = "*"; + private static readonly char Separator = '/'; /// /// Gets or sets the provider namespace /// [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = false, ValueFromPipeline = true, HelpMessage = "The action string.")] [ValidateNotNullOrEmpty] - public string ActionString { get; set; } + public string OperationSearchString { get; set; } /// /// Executes the cmdlet @@ -42,34 +44,54 @@ public class GetAzureProviderOperationCommand : ResourcesBaseCmdlet protected override void ProcessRecord() { // remove leading and trailing whitespaces - this.ActionString = this.ActionString.Trim(); + this.OperationSearchString = this.OperationSearchString.Trim(); - List operationsToDisplay; + ValidateActionSearchString(this.OperationSearchString); + + List operationsToDisplay; - if (this.ActionString.Contains(WildCardCharacter)) + if (this.OperationSearchString.Contains(WildCardCharacter)) { - operationsToDisplay = this.ProcessProviderOperationsWithWildCard(ActionString); + operationsToDisplay = this.ProcessProviderOperationsWithWildCard(OperationSearchString); } else { - operationsToDisplay = this.ProcessProviderOperationsWithoutWildCard(ActionString); + operationsToDisplay = this.ProcessProviderOperationsWithoutWildCard(OperationSearchString); } this.WriteObject(operationsToDisplay, enumerateCollection: true); } + private static void ValidateActionSearchString(string actionSearchString) + { + if (actionSearchString.Contains("?")) + { + throw new ArgumentException(ProjectResources.ProviderOperationUnsupportedWildcard); + } + + string[] parts = actionSearchString.Split(Separator); + if (parts.Any(p => p.Contains(WildCardCharacter) && p.Length != 1)) + { + throw new ArgumentException(ProjectResources.OperationSearchStringInvalidWildcard); + } + + if(parts.Length == 1 && parts[0] != WildCardCharacter) + { + throw new ArgumentException(string.Format(ProjectResources.OperationSearchStringInvalidProviderName, parts[0])); + } + } + /// /// Get a list of Provider operations in the case that the Actionstring input contains a wildcard /// - private List ProcessProviderOperationsWithWildCard(string actionString) + private List ProcessProviderOperationsWithWildCard(string actionSearchString) { // Filter the list of all operation names to what matches the wildcard - WildcardPattern wildcard = new WildcardPattern(actionString, WildcardOptions.IgnoreCase | WildcardOptions.Compiled); + WildcardPattern wildcard = new WildcardPattern(actionSearchString, WildcardOptions.IgnoreCase | WildcardOptions.Compiled); List providers = new List(); - - string nonWildCardPrefix = GetAzureProviderOperationCommand.GetNonWildcardPrefix(actionString); - if (string.IsNullOrWhiteSpace(nonWildCardPrefix)) + string provider = this.OperationSearchString.Split(Separator).First(); + if (provider.Equals(WildCardCharacter)) { // 'Get-AzureRmProviderOperation *' or 'Get-AzureRmProviderOperation */virtualmachines/*' // get operations for all providers @@ -77,41 +99,23 @@ private List ProcessProviderOperationsWithWildCard( } else { - // Some string exists before the wild card character - potentially the full name of the provider. - string providerFullName = GetAzureProviderOperationCommand.GetResourceProviderFullName(nonWildCardPrefix); - if (!string.IsNullOrWhiteSpace(providerFullName)) - { - // we have the full name of the provider. 'Get-AzureRmProviderOperation Microsoft.Sql/servers/*' - // only query for that provider - providers.Add(this.ResourcesClient.GetProviderOperationsMetadata(providerFullName)); - } - else - { - // We have only a partial name of the provider, say Microsoft.*/* or Microsoft.*/*/read. - // query for all providers and then do prefix match on the operations - providers.AddRange(this.ResourcesClient.ListProviderOperationsMetadata()); - } + // 'Get-AzureRmProviderOperation Microsoft.Compute/virtualmachines/*' or 'Get-AzureRmProviderOperation Microsoft.Sql/*' + providers.Add(this.ResourcesClient.GetProviderOperationsMetadata(provider)); } - return providers.SelectMany(p => GetPSOperationsFromProviderOperationsMetadata(p)).Where(operation => wildcard.IsMatch(operation.Operation)).ToList(); + return providers.SelectMany(p => GetPSOperationsFromProviderOperationsMetadata(p)).Where(operation => wildcard.IsMatch(operation.Operation)).ToList(); } /// /// Gets a list of Provider operations in the case that the Actionstring input does not contain a wildcard /// - private List ProcessProviderOperationsWithoutWildCard(string actionString) + private List ProcessProviderOperationsWithoutWildCard(string operationString) { - List operationsToDisplay = new List(); - string providerFullName = GetAzureProviderOperationCommand.GetResourceProviderFullName(actionString); - if (!string.IsNullOrWhiteSpace(providerFullName)) - { - // We have the full name of the provider. get operations metadata for this provider - ProviderOperationsMetadata providerOperations = this.ResourcesClient.GetProviderOperationsMetadata(providerFullName); - IEnumerable flattenedProviderOperations = GetAzureProviderOperationCommand.GetPSOperationsFromProviderOperationsMetadata(providerOperations); - operationsToDisplay.AddRange(flattenedProviderOperations.Where(op => string.Equals(op.Operation, actionString, StringComparison.OrdinalIgnoreCase))); - } + string providerFullName = operationString.Split(Separator).First(); - return operationsToDisplay; + ProviderOperationsMetadata providerOperations = this.ResourcesClient.GetProviderOperationsMetadata(providerFullName); + IEnumerable flattenedProviderOperations = GetAzureProviderOperationCommand.GetPSOperationsFromProviderOperationsMetadata(providerOperations); + return flattenedProviderOperations.Where(op => string.Equals(op.Operation, operationString, StringComparison.OrdinalIgnoreCase)).ToList(); } private static IEnumerable GetPSOperationsFromProviderOperationsMetadata(ProviderOperationsMetadata providerOperationsMetadata) @@ -150,7 +154,7 @@ private static PSResourceProviderOperation ToPSResourceProviderOperation(Operati /// private static string GetResourceProviderFullName(string nonWildCardPrefix) { - int index = nonWildCardPrefix.IndexOf("/", 0); + int index = nonWildCardPrefix.IndexOf(Separator.ToString(), 0); return index > 0 ? nonWildCardPrefix.Substring(0, index) : string.Empty; } diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs index 53c2f8c2522e..06138b1fc3ab 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs @@ -15,6 +15,7 @@ using Microsoft.Azure.Commands.Resources.Models; using Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; using Microsoft.Azure.Commands.Resources.Models.Authorization; +using System; using System.Collections.Generic; using System.Management.Automation; @@ -31,6 +32,11 @@ public class GetAzureRoleDefinitionCommand : ResourcesBaseCmdlet [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleDefinitionId, + HelpMessage = "Role definition id.")] + [ValidateNotNullOrEmpty] + public Guid Id { get; set; } + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleDefinitionCustom, HelpMessage = "If specified, only displays the custom created roles in the directory.")] public SwitchParameter Custom { get; set; } @@ -41,6 +47,10 @@ protected override void ProcessRecord() { WriteObject(PoliciesClient.FilterRoleDefinitionsByCustom(), enumerateCollection: true); } + else if (Id != Guid.Empty) + { + WriteObject(PoliciesClient.GetRoleDefinition(Id)); + } else { WriteObject(PoliciesClient.FilterRoleDefinitions(Name), enumerateCollection: true); diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs index 42a2454d6d67..5bd9f46966b8 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs @@ -14,6 +14,7 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; +using Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; using Microsoft.Azure.Commands.Resources.Models.Authorization; using ProjectResources = Microsoft.Azure.Commands.Resources.Properties.Resources; using System; @@ -26,10 +27,16 @@ namespace Microsoft.Azure.Commands.Resources [Cmdlet(VerbsCommon.Remove, "AzureRmRoleDefinition"), OutputType(typeof(bool))] public class RemoveAzureRoleDefinitionCommand : ResourcesBaseCmdlet { + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleDefinitionId, + HelpMessage = "Role definition id")] [ValidateNotNullOrEmpty] - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Role definition id.")] public Guid Id { get; set; } + [Parameter(Position = 0, Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleDefinitionName, + HelpMessage = "Role definition name. For e.g. Reader, Contributor, Virtual Machine Contributor.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + [Parameter(Mandatory = false)] public SwitchParameter Force { get; set; } @@ -39,13 +46,23 @@ public class RemoveAzureRoleDefinitionCommand : ResourcesBaseCmdlet protected override void ProcessRecord() { PSRoleDefinition roleDefinition = null; + Action action = null; + + if(Id != Guid.Empty) + { + action = (() => roleDefinition = PoliciesClient.RemoveRoleDefinition(Id, DefaultProfile.Context.Subscription.Id.ToString())); + } + else + { + action = (() => roleDefinition = PoliciesClient.RemoveRoleDefinition(Name, DefaultProfile.Context.Subscription.Id.ToString())); + } ConfirmAction( Force.IsPresent, string.Format(ProjectResources.RemoveRoleDefinition, Id), ProjectResources.RemoveRoleDefinition, Id.ToString(), - () => roleDefinition = PoliciesClient.RemoveRoleDefinition(Id, DefaultProfile.Context.Subscription.Id.ToString())); + action); if (PassThru) { diff --git a/src/ResourceManager/Resources/Commands.Resources/packages.config b/src/ResourceManager/Resources/Commands.Resources/packages.config index 389d4a6b1b78..a08c725018ac 100644 --- a/src/ResourceManager/Resources/Commands.Resources/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 67eba130c34d..3a5bc22f667c 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'd1de7560-48e1-48f3-bc8c-4eea3af2bbe1' diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index 689647933a15..3ebde70db24b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -35,7 +35,7 @@ - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config index 0993c66f7da8..6fbd1cb14c3f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 1468651ddd6b..da4f8b21bc98 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -44,7 +44,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index 71fa512dde50..0c1a2d5f8153 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Sql/AzureRM.Sql.psd1 b/src/ResourceManager/Sql/AzureRM.Sql.psd1 index eb25701f91f7..0d93078aac2c 100644 --- a/src/ResourceManager/Sql/AzureRM.Sql.psd1 +++ b/src/ResourceManager/Sql/AzureRM.Sql.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '150d9544-6348-4373-806f-10cd0b4de4cb' diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index 2df5213b9f01..828680f619fa 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -48,7 +48,7 @@ ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs index 200196deb112..71809a7774ab 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs @@ -43,20 +43,22 @@ protected override void SetupManagementClients() helper.SetupSomeOfManagementClients(sqlCSMClient, storageClient, storageV2Client, resourcesClient, authorizationClient); } - [Fact(Skip = "PSGet: TODO fix by moving SM specific logic to test setup")] [Trait(Category.AcceptanceType, Category.Sql)] + [Fact(Skip = "PSGet: TODO fix by moving SM specific logic to test setup")] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithStorage() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithStorage"); } - [Fact(Skip = "PSGet: TODO fix by moving SM specific logic to test setup")] + [Fact] [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithStorageV2() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithStorageV2"); } - [Fact(Skip = "PSGet: TODO fix by moving SM specific logic to test setup")] [Trait(Category.AcceptanceType, Category.Sql)] + [Fact(Skip = "PSGet: TODO fix by moving SM specific logic to test setup")] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyWithStorage() { RunPowerShellTest("Test-AuditingServerUpdatePolicyWithStorage"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.ps1 index 9fa2c625bc4e..4ae338dbb9b8 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.ps1 @@ -20,7 +20,7 @@ Tests that when setting the storage account property's value in a database's aud function Test-AuditingDatabaseUpdatePolicyWithStorageV2 { # Setup - $testSuffix = 102 + $testSuffix = 1029 Create-TestEnvironmentWithStorageV2 $testSuffix $params = Get-SqlAuditingTestEnvironmentParameters $testSuffix @@ -215,7 +215,7 @@ Tests that when modifying the eventType property of a databases's auditing polic function Test-AuditingDatabaseUpdatePolicyWithEventTypes { # Setup - $testSuffix = 501 + $testSuffix = 5011 Create-TestEnvironment $testSuffix $params = Get-SqlAuditingTestEnvironmentParameters $testSuffix diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs index 350d46a92e19..ab55b3ad6b03 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs @@ -56,7 +56,7 @@ public void TestDatabaseDataMaskingTextRuleLifecycle() RunPowerShellTest("Test-DatabaseDataMaskingTextRuleLifecycle"); } - [Fact] + [Fact(Skip = "Waiting for database structure validation")] [Trait(Category.AcceptanceType, Category.BVT)] public void TestDatabaseDataMaskingRuleCreationFailures() { diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 index 30b214f70cfe..ff01b8305916 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 @@ -138,7 +138,7 @@ function Test-DatabaseDataMaskingBasicRuleLifecycle # Setup $testSuffix = 40225 $params = Create-DataMaskingTestEnvironment $testSuffix - $ruleId = "rule1" + try { # Test @@ -146,59 +146,52 @@ function Test-DatabaseDataMaskingBasicRuleLifecycle $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 + New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert Assert-AreEqual ($ruleCountBefore + 1) $ruleCountAfter - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Default" Assert-AreEqual $rule.SchemaName "dbo" Assert-AreEqual $rule.TableName $params.table1 Assert-AreEqual $rule.ColumnName $params.column1 - Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Email" -SchemaName "dbo" -TableName $params.table2 -ColumnName $params.column2 - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Email" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Email" Assert-AreEqual $rule.SchemaName "dbo" - Assert-AreEqual $rule.TableName $params.table2 - Assert-AreEqual $rule.ColumnName $params.column2 + Assert-AreEqual $rule.TableName $params.table1 + Assert-AreEqual $rule.ColumnName $params.column1 - Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -MaskingFunction "Default" + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Default" Assert-AreEqual $rule.SchemaName "dbo" - Assert-AreEqual $rule.TableName $params.table2 - Assert-AreEqual $rule.ColumnName $params.column2 + Assert-AreEqual $rule.TableName $params.table1 + Assert-AreEqual $rule.ColumnName $params.column1 $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force + Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -Force $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count - $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} - - # Assert - Assert-Throws {Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId} - Assert-AreEqual ($ruleCountBefore - 1) $ruleCountAfter + $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} } finally { @@ -217,7 +210,6 @@ function Test-DatabaseDataMaskingNumberRuleLifecycle # Setup $testSuffix = 51792 $params = Create-DataMaskingTestEnvironment $testSuffix - $ruleId = "rule1a" try { @@ -226,20 +218,19 @@ function Test-DatabaseDataMaskingNumberRuleLifecycle $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Number" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.columnInt -NumberFrom 12 -NumberTo 56 + New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Number" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.columnInt -NumberFrom 12 -NumberTo 56 $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert Assert-AreEqual ($ruleCountBefore + 1) $ruleCountAfter - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.columnInt # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Number" Assert-AreEqual $rule.SchemaName "dbo" Assert-AreEqual $rule.TableName $params.table1 @@ -248,30 +239,28 @@ function Test-DatabaseDataMaskingNumberRuleLifecycle Assert-AreEqual $rule.NumberTo 56 - Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -SchemaName "dbo" -TableName $params.table2 -ColumnName $params.columnFloat -NumberFrom 67.26 -NumberTo 78.91 - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.columnInt -NumberFrom 15 -NumberTo 34 + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.columnInt # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Number" Assert-AreEqual $rule.SchemaName "dbo" - Assert-AreEqual $rule.TableName $params.table2 - Assert-AreEqual $rule.ColumnName $params.columnFloat - Assert-AreEqual $rule.NumberFrom 67.26 - Assert-AreEqual $rule.NumberTo 78.91 + Assert-AreEqual $rule.TableName $params.table1 + Assert-AreEqual $rule.ColumnName $params.columnInt + Assert-AreEqual $rule.NumberFrom 15 + Assert-AreEqual $rule.NumberTo 34 $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force + Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -Force $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert - Assert-Throws {Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId} Assert-AreEqual ($ruleCountBefore - 1) $ruleCountAfter } @@ -291,7 +280,6 @@ function Test-DatabaseDataMaskingTextRuleLifecycle # Setup $testSuffix = 60222 $params = Create-DataMaskingTestEnvironment $testSuffix - $ruleId = "rule4" try { @@ -300,20 +288,19 @@ function Test-DatabaseDataMaskingTextRuleLifecycle $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Text" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -PrefixSize 1 -ReplacementString "AAA" -SuffixSize 3 + New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Text" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -PrefixSize 1 -ReplacementString "AAA" -SuffixSize 3 $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert Assert-AreEqual ($ruleCountBefore + 1) $ruleCountAfter - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Text" Assert-AreEqual $rule.SchemaName "dbo" Assert-AreEqual $rule.TableName $params.table1 @@ -322,18 +309,17 @@ function Test-DatabaseDataMaskingTextRuleLifecycle Assert-AreEqual $rule.ReplacementString "AAA" Assert-AreEqual $rule.SuffixSize 3 - Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -SchemaName "dbo" -TableName $params.table2 -ColumnName $params.column2 -PrefixSize 4 -ReplacementString "BBB" -SuffixSize 2 - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + Set-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -PrefixSize 4 -ReplacementString "BBB" -SuffixSize 2 + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Text" Assert-AreEqual $rule.SchemaName "dbo" - Assert-AreEqual $rule.TableName $params.table2 - Assert-AreEqual $rule.ColumnName $params.column2 + Assert-AreEqual $rule.TableName $params.table1 + Assert-AreEqual $rule.ColumnName $params.column1 Assert-AreEqual $rule.PrefixSize 4 Assert-AreEqual $rule.ReplacementString "BBB" Assert-AreEqual $rule.SuffixSize 2 @@ -341,14 +327,12 @@ function Test-DatabaseDataMaskingTextRuleLifecycle $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force + Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -Force $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert - Assert-Throws {Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId} Assert-AreEqual ($ruleCountBefore - 1) $ruleCountAfter - } finally { @@ -364,30 +348,20 @@ function Test-DatabaseDataMaskingRuleCreationFailures { # Setup - $testSuffix = 70222 + $testSuffix = 70232 $params = Create-DataMaskingTestEnvironment $testSuffix - $ruleId = "rule4" try { # Test Set-AzureRmSqlDatabaseDataMaskingPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName "NONEXISTING" -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName "NONEXISTING" -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName "NONEXISTING" -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "NONEXISTING" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default"} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -ColumnName $params.column1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Number" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -NumberFrom 2 -NumberTo 1} - - New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table2 -ColumnName $params.column2} - Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId "SHOULD-FAIL" -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} - - Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName "NONEXISTING" -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName "NONEXISTING" -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName "NONEXISTING" -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1} + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "NONEXISTING" -TableName $params.table1 -ColumnName $params.column1} + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName "NONEXISTING" -ColumnName $params.column1} + Assert-Throws { New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 "NONEXISTING"} } finally { @@ -405,32 +379,30 @@ function Test-DatabaseDataMaskingRuleCreationWithoutPolicy # Setup $testSuffix = 457822 $params = Create-DataMaskingTestEnvironment $testSuffix - $ruleId = "rule1" try { # Test $ruleCountBefore = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} - New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 + New-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} # Assert Assert-AreEqual ($ruleCountBefore + 1) $ruleCountAfter - $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + $rule = Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 # Assert Assert-AreEqual $rule.ResourceGroupName $params.rgname Assert-AreEqual $rule.ServerName $params.serverName Assert-AreEqual $rule.DatabaseName $params.databaseName - Assert-AreEqual $rule.RuleId $ruleId Assert-AreEqual $rule.MaskingFunction "Default" Assert-AreEqual $rule.SchemaName "dbo" Assert-AreEqual $rule.TableName $params.table1 Assert-AreEqual $rule.ColumnName $params.column1 $ruleCountBefore = $ruleCountAfter - Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force + Remove-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -SchemaName "dbo" -TableName $params.table1 -ColumnName $params.column1 -Force $ruleCountAfter = (Get-AzureRmSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountAfter = if ( !$ruleCountAfter ) {0} else {$ruleCountAfter} diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs index 959456dde980..3013793b3620 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs @@ -92,7 +92,7 @@ public void SetupEnvironment() var environment = AzureRmProfileProvider.Instance.Profile.Environments[AzureRmProfileProvider.Instance.Profile.Context.Subscription.Environment]; environment.Endpoints[AzureEnvironment.Endpoint.Graph] = csmEnvironment.Endpoints.GraphUri.AbsoluteUri; - + environment.Endpoints[AzureEnvironment.Endpoint.StorageEndpointSuffix] = "core.windows.net"; AzureRmProfileProvider.Instance.Profile.Save(); } } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs index c6900cc4991f..e7b1bc42f746 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs @@ -79,7 +79,6 @@ protected void RunPowerShellTest(params string[] scripts) helper.RMStorageModule, helper.GetRMModulePath(@"AzureRM.Insights.psd1"), helper.GetRMModulePath(@"AzureRM.Sql.psd1")); - helper.RunPowerShellTest(scripts); } } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.AuditingTests/TestAuditingDatabaseUpdatePolicyWithStorageV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.AuditingTests/TestAuditingDatabaseUpdatePolicyWithStorageV2.json index d872c7e99124..491e5b814c2a 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.AuditingTests/TestAuditingDatabaseUpdatePolicyWithStorageV2.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.AuditingTests/TestAuditingDatabaseUpdatePolicyWithStorageV2.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,10 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "119" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -24,20 +21,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14828" ], "x-ms-request-id": [ - "061a2392-738e-4c75-a87e-60547d90a10f" + "45744469-bdda-487c-b56f-6bfe768289c3" ], "x-ms-correlation-request-id": [ - "061a2392-738e-4c75-a87e-60547d90a10f" + "45744469-bdda-487c-b56f-6bfe768289c3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080252Z:061a2392-738e-4c75-a87e-60547d90a10f" + "WESTEUROPE:20151015T080158Z:45744469-bdda-487c-b56f-6bfe768289c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +40,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:51 GMT" + "Thu, 15 Oct 2015 08:01:58 GMT" ] }, - "StatusCode": 404 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +61,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102\",\r\n \"name\": \"sql-audit-cmdlet-test-rg102\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029\",\r\n \"name\": \"sql-audit-cmdlet-test-rg1029\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "207" + "209" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +76,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "1d4fda4a-b191-47e3-b18d-61020bb628ae" + "891ee0cd-69fa-4e1c-bce9-561f6db3c2e4" ], "x-ms-correlation-request-id": [ - "1d4fda4a-b191-47e3-b18d-61020bb628ae" + "891ee0cd-69fa-4e1c-bce9-561f6db3c2e4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080253Z:1d4fda4a-b191-47e3-b18d-61020bb628ae" + "WESTEUROPE:20151015T080200Z:891ee0cd-69fa-4e1c-bce9-561f6db3c2e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,31 +94,25 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:52 GMT" + "Thu, 15 Oct 2015 08:02:00 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/providers/microsoft.resources/deployments/sql-audit-test-env-setup/validate?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvbWljcm9zb2Z0LnJlc291cmNlcy9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-12T08:02:54.0441903Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2bcbb42c-edda-48de-8484-422b5465d648\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"name\": \"sql-audit-cmdlet-server1029\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"name\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029\",\r\n \"name\": \"auditcmdlets1029\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1643" + "883" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,17 +123,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" ], "x-ms-request-id": [ - "2bcbb42c-edda-48de-8484-422b5465d648" + "fcf85307-e08a-48e3-b10b-5d8a395944f3" ], "x-ms-correlation-request-id": [ - "2bcbb42c-edda-48de-8484-422b5465d648" + "fcf85307-e08a-48e3-b10b-5d8a395944f3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080254Z:2bcbb42c-edda-48de-8484-422b5465d648" + "WESTEUROPE:20151015T080201Z:fcf85307-e08a-48e3-b10b-5d8a395944f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,31 +142,25 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:53 GMT" + "Thu, 15 Oct 2015 08:02:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2.0\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2360" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-12T08:02:55.3172875Z\",\r\n \"duration\": \"PT0.5193767S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "61" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,44 +171,65 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], "x-ms-request-id": [ - "2f621fa0-c17e-41a3-a31b-4b7b8dff5d95" + "044bcc37-7351-4c8a-a415-4b4b7611f475" ], - "x-ms-correlation-request-id": [ - "2f621fa0-c17e-41a3-a31b-4b7b8dff5d95" + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080255Z:2f621fa0-c17e-41a3-a31b-4b7b8dff5d95" + "X-Content-Type-Options": [ + "nosniff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "0ce04e56-9bb4-4fd9-98eb-2560683c229e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20151015T080202Z:0ce04e56-9bb4-4fd9-98eb-2560683c229e" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:54 GMT" + "Thu, 15 Oct 2015 08:02:01 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"securestring\",\r\n \"defaultValue\": \"testp@ssMakingIt1007Longer\"\r\n },\r\n \"collation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"string\"\r\n },\r\n \"edition\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"EnvLocation\": {\r\n \"type\": \"string\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2014-04-01-preview\",\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('serverName')]\",\r\n \"properties\": {\r\n \"administratorLogin\": \"[parameters('administratorLogin')]\",\r\n \"administratorLoginPassword\": \"[parameters('administratorLoginPassword')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2014-04-01-preview\",\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Sql/servers/', parameters('serverName'))]\"\r\n ],\r\n \"location\": \"[parameters('EnvLocation')]\",\r\n \"name\": \"[parameters('databaseName')]\",\r\n \"properties\": {\r\n \"collation\": \"[parameters('collation')]\",\r\n \"edition\": \"[parameters('edition')]\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"type\": \"databases\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"databaseName\": {\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"West US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2392" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-15T08:02:04.628734Z\",\r\n \"duration\": \"PT1.36246S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,17 +240,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "4afd0a41-c1da-4a01-9692-0e845857bd40" + "2b61fccc-924e-452f-a1d2-4414ded2fa99" ], "x-ms-correlation-request-id": [ - "4afd0a41-c1da-4a01-9692-0e845857bd40" + "2b61fccc-924e-452f-a1d2-4414ded2fa99" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080255Z:4afd0a41-c1da-4a01-9692-0e845857bd40" + "WESTEUROPE:20151015T080205Z:2b61fccc-924e-452f-a1d2-4414ded2fa99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,14 +259,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:54 GMT" + "Thu, 15 Oct 2015 08:02:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -286,16 +289,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14826" ], "x-ms-request-id": [ - "3011bbdb-272e-4dad-bf4d-3d186a7a3b42" + "394231c8-7437-47a7-9893-5ab3e40c1d7b" ], "x-ms-correlation-request-id": [ - "3011bbdb-272e-4dad-bf4d-3d186a7a3b42" + "394231c8-7437-47a7-9893-5ab3e40c1d7b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080258Z:3011bbdb-272e-4dad-bf4d-3d186a7a3b42" + "WESTEUROPE:20151015T080206Z:394231c8-7437-47a7-9893-5ab3e40c1d7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,14 +307,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:57 GMT" + "Thu, 15 Oct 2015 08:02:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -334,16 +337,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14823" ], "x-ms-request-id": [ - "d49cb33a-95a1-4610-82d4-d2d2e86c21b9" + "dc5ee477-52e9-4bb8-8e9c-9371cc89f38d" ], "x-ms-correlation-request-id": [ - "d49cb33a-95a1-4610-82d4-d2d2e86c21b9" + "dc5ee477-52e9-4bb8-8e9c-9371cc89f38d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080301Z:d49cb33a-95a1-4610-82d4-d2d2e86c21b9" + "WESTEUROPE:20151015T080209Z:dc5ee477-52e9-4bb8-8e9c-9371cc89f38d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +355,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:01 GMT" + "Thu, 15 Oct 2015 08:02:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -382,16 +385,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14821" ], "x-ms-request-id": [ - "335bd1bc-00c1-40c1-b95b-f97444e93b25" + "07523ce9-d198-45a8-9955-57280b4c1828" ], "x-ms-correlation-request-id": [ - "335bd1bc-00c1-40c1-b95b-f97444e93b25" + "07523ce9-d198-45a8-9955-57280b4c1828" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080304Z:335bd1bc-00c1-40c1-b95b-f97444e93b25" + "WESTEUROPE:20151015T080212Z:07523ce9-d198-45a8-9955-57280b4c1828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,14 +403,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:03 GMT" + "Thu, 15 Oct 2015 08:02:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -415,10 +418,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-12T08:03:04.5227306Z\",\r\n \"duration\": \"PT7.5764285S\",\r\n \"trackingId\": \"f3a3ecc7-bc66-487d-b295-0c7cfe70ed67\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -430,16 +433,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14819" ], "x-ms-request-id": [ - "decf6191-3fcc-4112-b5a9-db9e817b0e39" + "4f74d50e-5717-42fe-9373-301abd2d0311" ], "x-ms-correlation-request-id": [ - "decf6191-3fcc-4112-b5a9-db9e817b0e39" + "4f74d50e-5717-42fe-9373-301abd2d0311" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080306Z:decf6191-3fcc-4112-b5a9-db9e817b0e39" + "WESTEUROPE:20151015T080215Z:4f74d50e-5717-42fe-9373-301abd2d0311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,14 +451,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:06 GMT" + "Thu, 15 Oct 2015 08:02:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -463,10 +466,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-12T08:03:04.5227306Z\",\r\n \"duration\": \"PT7.5764285S\",\r\n \"trackingId\": \"f3a3ecc7-bc66-487d-b295-0c7cfe70ed67\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/854EACF9FABB270B\",\r\n \"operationId\": \"854EACF9FABB270B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:16.8512923Z\",\r\n \"duration\": \"PT8.6941829S\",\r\n \"trackingId\": \"b5bfa2e5-6891-40bc-ab2a-3dbcc786370d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "667" + "666" ], "Content-Type": [ "application/json; charset=utf-8" @@ -478,16 +481,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14817" ], "x-ms-request-id": [ - "8502227f-7ce4-4c8f-b86f-c1dcfe1d5377" + "857f5ad3-b983-44dd-8d02-e253ca7662a3" ], "x-ms-correlation-request-id": [ - "8502227f-7ce4-4c8f-b86f-c1dcfe1d5377" + "857f5ad3-b983-44dd-8d02-e253ca7662a3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080309Z:8502227f-7ce4-4c8f-b86f-c1dcfe1d5377" + "WESTEUROPE:20151015T080218Z:857f5ad3-b983-44dd-8d02-e253ca7662a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,14 +499,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:09 GMT" + "Thu, 15 Oct 2015 08:02:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -511,10 +514,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/4123DDA874F2948B\",\r\n \"operationId\": \"4123DDA874F2948B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-12T08:03:10.302988Z\",\r\n \"duration\": \"PT5.6985111S\",\r\n \"trackingId\": \"8d63acd3-5f3f-4c88-8271-ec4deb41cb72\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup/operations/97B10C8BFB4883E6\",\r\n \"operationId\": \"97B10C8BFB4883E6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-12T08:03:04.5227306Z\",\r\n \"duration\": \"PT7.5764285S\",\r\n \"trackingId\": \"f3a3ecc7-bc66-487d-b295-0c7cfe70ed67\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/854EACF9FABB270B\",\r\n \"operationId\": \"854EACF9FABB270B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:16.8512923Z\",\r\n \"duration\": \"PT8.6941829S\",\r\n \"trackingId\": \"b5bfa2e5-6891-40bc-ab2a-3dbcc786370d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1388" + "666" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,16 +529,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14815" ], "x-ms-request-id": [ - "a2f1a7c3-3e50-4a98-b94a-16330281b7f7" + "29a8e829-5c52-4663-9255-86def3c926de" ], "x-ms-correlation-request-id": [ - "a2f1a7c3-3e50-4a98-b94a-16330281b7f7" + "29a8e829-5c52-4663-9255-86def3c926de" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080312Z:a2f1a7c3-3e50-4a98-b94a-16330281b7f7" + "WESTEUROPE:20151015T080221Z:29a8e829-5c52-4663-9255-86def3c926de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,14 +547,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:11 GMT" + "Thu, 15 Oct 2015 08:02:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -559,10 +562,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-12T08:02:55.3172875Z\",\r\n \"duration\": \"PT0.5193767S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/11E7EA365F938AAA\",\r\n \"operationId\": \"11E7EA365F938AAA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:23.2212418Z\",\r\n \"duration\": \"PT6.2890325S\",\r\n \"trackingId\": \"22d60141-b179-4fd1-9d94-4d9bb6cf7e07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/854EACF9FABB270B\",\r\n \"operationId\": \"854EACF9FABB270B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:16.8512923Z\",\r\n \"duration\": \"PT8.6941829S\",\r\n \"trackingId\": \"b5bfa2e5-6891-40bc-ab2a-3dbcc786370d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -574,16 +577,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14813" ], "x-ms-request-id": [ - "ba427b3c-d7f1-4fb1-8d67-a8fa0fef2367" + "65f5f08b-54f9-437c-8fc0-3858d40e419e" ], "x-ms-correlation-request-id": [ - "ba427b3c-d7f1-4fb1-8d67-a8fa0fef2367" + "65f5f08b-54f9-437c-8fc0-3858d40e419e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080256Z:ba427b3c-d7f1-4fb1-8d67-a8fa0fef2367" + "WESTEUROPE:20151015T080224Z:65f5f08b-54f9-437c-8fc0-3858d40e419e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,14 +595,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:55 GMT" + "Thu, 15 Oct 2015 08:02:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -607,10 +610,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-12T08:02:56.4534179Z\",\r\n \"duration\": \"PT1.6555071S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/11E7EA365F938AAA\",\r\n \"operationId\": \"11E7EA365F938AAA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:23.2212418Z\",\r\n \"duration\": \"PT6.2890325S\",\r\n \"trackingId\": \"22d60141-b179-4fd1-9d94-4d9bb6cf7e07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup/operations/854EACF9FABB270B\",\r\n \"operationId\": \"854EACF9FABB270B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:16.8512923Z\",\r\n \"duration\": \"PT8.6941829S\",\r\n \"trackingId\": \"b5bfa2e5-6891-40bc-ab2a-3dbcc786370d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -622,16 +625,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14811" ], "x-ms-request-id": [ - "e8f1864f-f44b-4ab1-8873-a2de6fe9652d" + "87ad6c60-a2bc-4178-80ea-45b3697f76de" ], "x-ms-correlation-request-id": [ - "e8f1864f-f44b-4ab1-8873-a2de6fe9652d" + "87ad6c60-a2bc-4178-80ea-45b3697f76de" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080258Z:e8f1864f-f44b-4ab1-8873-a2de6fe9652d" + "WESTEUROPE:20151015T080227Z:87ad6c60-a2bc-4178-80ea-45b3697f76de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,14 +643,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:02:57 GMT" + "Thu, 15 Oct 2015 08:02:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -655,10 +658,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-12T08:02:56.4534179Z\",\r\n \"duration\": \"PT1.6555071S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-15T08:02:04.628734Z\",\r\n \"duration\": \"PT1.36246S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -670,16 +673,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14825" ], "x-ms-request-id": [ - "de93ba08-14f5-4194-a373-1542f7304e47" + "81d0f657-c4a6-4809-ae5f-f6646eabb3fd" ], "x-ms-correlation-request-id": [ - "de93ba08-14f5-4194-a373-1542f7304e47" + "81d0f657-c4a6-4809-ae5f-f6646eabb3fd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080301Z:de93ba08-14f5-4194-a373-1542f7304e47" + "WESTEUROPE:20151015T080206Z:81d0f657-c4a6-4809-ae5f-f6646eabb3fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,14 +691,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:01 GMT" + "Thu, 15 Oct 2015 08:02:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -703,10 +706,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-12T08:02:56.4534179Z\",\r\n \"duration\": \"PT1.6555071S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,16 +721,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14822" ], "x-ms-request-id": [ - "66df5e8d-4e3f-40f1-8c9c-0938e967334c" + "f464d934-d65d-415a-96e2-cc31fbd560e5" ], "x-ms-correlation-request-id": [ - "66df5e8d-4e3f-40f1-8c9c-0938e967334c" + "f464d934-d65d-415a-96e2-cc31fbd560e5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080304Z:66df5e8d-4e3f-40f1-8c9c-0938e967334c" + "WESTEUROPE:20151015T080209Z:f464d934-d65d-415a-96e2-cc31fbd560e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,14 +739,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:04 GMT" + "Thu, 15 Oct 2015 08:02:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -751,10 +754,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-12T08:02:56.4534179Z\",\r\n \"duration\": \"PT1.6555071S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -766,16 +769,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14820" ], "x-ms-request-id": [ - "f6d54787-9fb6-4da3-864b-1d87ee4cd92a" + "a57990eb-f845-4ebf-adf8-e7daa2fb3872" ], "x-ms-correlation-request-id": [ - "f6d54787-9fb6-4da3-864b-1d87ee4cd92a" + "a57990eb-f845-4ebf-adf8-e7daa2fb3872" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080306Z:f6d54787-9fb6-4da3-864b-1d87ee4cd92a" + "WESTEUROPE:20151015T080212Z:a57990eb-f845-4ebf-adf8-e7daa2fb3872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,14 +787,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:06 GMT" + "Thu, 15 Oct 2015 08:02:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -799,10 +802,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-12T08:02:56.4534179Z\",\r\n \"duration\": \"PT1.6555071S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1650" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,16 +817,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14818" ], "x-ms-request-id": [ - "f44b4192-96b3-4b40-9c97-e20f3336559b" + "4c0e1d64-0175-4753-b25a-ec05ad491355" ], "x-ms-correlation-request-id": [ - "f44b4192-96b3-4b40-9c97-e20f3336559b" + "4c0e1d64-0175-4753-b25a-ec05ad491355" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080309Z:f44b4192-96b3-4b40-9c97-e20f3336559b" + "WESTEUROPE:20151015T080215Z:4c0e1d64-0175-4753-b25a-ec05ad491355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,14 +835,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:09 GMT" + "Thu, 15 Oct 2015 08:02:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -847,10 +850,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db102\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-12T08:03:11.6253046Z\",\r\n \"duration\": \"PT16.8273938S\",\r\n \"correlationId\": \"2f621fa0-c17e-41a3-a31b-4b7b8dff5d95\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server102\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1822" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +865,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14816" ], "x-ms-request-id": [ - "76a6147e-0a7d-4e50-bab3-82ca0e4d7314" + "67fe13a3-dc5c-48c5-aaba-cb32528a00fe" ], "x-ms-correlation-request-id": [ - "76a6147e-0a7d-4e50-bab3-82ca0e4d7314" + "67fe13a3-dc5c-48c5-aaba-cb32528a00fe" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080312Z:76a6147e-0a7d-4e50-bab3-82ca0e4d7314" + "WESTEUROPE:20151015T080218Z:67fe13a3-dc5c-48c5-aaba-cb32528a00fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,14 +883,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:12 GMT" + "Thu, 15 Oct 2015 08:02:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -895,10 +898,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102\",\r\n \"name\": \"sql-audit-cmdlet-server102\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"name\": \"sql-audit-cmdlet-server102/sql-audit-cmdlet-db102\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "610" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +913,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14814" ], "x-ms-request-id": [ - "6a68c1ca-b678-426b-ba20-9f094f815b39" + "6b5464c9-7ca2-406a-a59a-6d6113649653" ], "x-ms-correlation-request-id": [ - "6a68c1ca-b678-426b-ba20-9f094f815b39" + "6b5464c9-7ca2-406a-a59a-6d6113649653" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080314Z:6a68c1ca-b678-426b-ba20-9f094f815b39" + "WESTEUROPE:20151015T080221Z:6b5464c9-7ca2-406a-a59a-6d6113649653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,25 +931,25 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:14 GMT" + "Thu, 15 Oct 2015 08:02:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-15T08:02:07.3178508Z\",\r\n \"duration\": \"PT4.0515768S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "45" + "1661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -957,20 +960,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" ], "x-ms-request-id": [ - "southcentralus:8781b94a-46c6-4046-9bf9-e0200158dc59" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "f731be35-a708-46e3-a5ad-9d16e9037c74" ], "x-ms-correlation-request-id": [ - "2843819a-b523-4a49-99bb-9322442b68e4" + "f731be35-a708-46e3-a5ad-9d16e9037c74" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080315Z:2843819a-b523-4a49-99bb-9322442b68e4" + "WESTEUROPE:20151015T080224Z:f731be35-a708-46e3-a5ad-9d16e9037c74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,34 +979,25 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:03:14 GMT" + "Thu, 15 Oct 2015 08:02:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvZGVwbG95bWVudHMvc3FsLWF1ZGl0LXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "89" - ], - "x-ms-client-request-id": [ - "b0d2c2aa-31c5-47d6-aa8f-be7d0c5bd868" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-db1029\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-15T08:02:24.4767945Z\",\r\n \"duration\": \"PT21.2105205S\",\r\n \"correlationId\": \"2b61fccc-924e-452f-a1d2-4414ded2fa99\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-audit-cmdlet-server1029/sql-audit-cmdlet-db1029\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server1029\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "1836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,60 +1008,56 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" ], "x-ms-request-id": [ - "4ea37aef-ee06-405c-9156-1a9b06a6b8ec" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "aa7da700-c8ad-4f33-85bd-6372ce85c621" ], "x-ms-correlation-request-id": [ - "a32c0ac5-53e5-44eb-9712-23edb33d0177" + "aa7da700-c8ad-4f33-85bd-6372ce85c621" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080318Z:a32c0ac5-53e5-44eb-9712-23edb33d0177" + "WESTEUROPE:20151015T080229Z:aa7da700-c8ad-4f33-85bd-6372ce85c621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 12 Aug 2015 08:03:17 GMT" + "Thu, 15 Oct 2015 08:02:29 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzRlYTM3YWVmLWVlMDYtNDA1Yy05MTU2LTFhOWIwNmE2YjhlYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], "x-ms-client-request-id": [ - "b6e6304c-11ee-4c80-9667-a97ec9b2da79" + "74544747-1244-42c8-9f27-a5c3a40d259b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "89" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1078,60 +1065,53 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" - ], "x-ms-request-id": [ - "51ece133-2cba-420d-812a-36d7425f9961" - ], - "Cache-Control": [ - "no-cache" + "5381504b-3936-4e5f-9716-f1096ddbecb9" ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "8f389288-6d4f-404a-ae3f-6cc66815b159" + "5381504b-3936-4e5f-9716-f1096ddbecb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080318Z:8f389288-6d4f-404a-ae3f-6cc66815b159" + "WESTEUROPE:20151015T080232Z:5381504b-3936-4e5f-9716-f1096ddbecb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 12 Aug 2015 08:03:17 GMT" + "Thu, 15 Oct 2015 08:02:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzRlYTM3YWVmLWVlMDYtNDA1Yy05MTU2LTFhOWIwNmE2YjhlYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e24f8583-4121-423d-aeb6-3d4b3d6a95f6" + "b96c2268-42cf-4dd7-9c8e-115fc0ab2873" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029\",\r\n \"location\": \"West US\",\r\n \"name\": \"auditcmdlets1029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-10-14T13:16:01.06979Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://auditcmdlets1029.blob.core.windows.net/\",\r\n \"file\": \"https://auditcmdlets1029.file.core.windows.net/\",\r\n \"queue\": \"https://auditcmdlets1029.queue.core.windows.net/\",\r\n \"table\": \"https://auditcmdlets1029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "761" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1139,60 +1119,53 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" - ], "x-ms-request-id": [ - "744e8da8-db03-417e-97ca-c407bc5c3b4c" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "a038a23c-ea72-44a8-999e-02a54d1e48c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14836" ], "x-ms-correlation-request-id": [ - "8900713f-1c2e-4bf8-b587-38caee6adc61" + "a038a23c-ea72-44a8-999e-02a54d1e48c0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080343Z:8900713f-1c2e-4bf8-b587-38caee6adc61" + "WESTEUROPE:20151015T080232Z:a038a23c-ea72-44a8-999e-02a54d1e48c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 12 Aug 2015 08:03:43 GMT" + "Thu, 15 Oct 2015 08:02:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/operations/4ea37aef-ee06-405c-9156-1a9b06a6b8ec?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzRlYTM3YWVmLWVlMDYtNDA1Yy05MTU2LTFhOWIwNmE2YjhlYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDI5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19623271-3c27-4dcb-8c9a-5a63ddb5d295" + "68b02076-ee85-4775-b9e8-34a6b75daf13" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"12lW0ytUVEgAGALZYqiTQRasRyfmbNcpZZZjVZMjYYySmFTW8jR62YsD/Lu8W5KvNMJG3uMN8nEtW800uBx9rg==\",\r\n \"key2\": \"z7EGV8TuUwVXfODLDM3kiPL3KDigN9uXyroVedMGmWb6SYNwdxicQonDaijzQLrvFmRUSWktTtkjGJKZKhFrtA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "198" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1201,53 +1174,52 @@ "no-cache" ], "x-ms-request-id": [ - "1b0fda63-621a-4fe1-b904-8afa514a1b43" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "5416d981-5e00-417b-8ae8-931b65e608d1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "a1accd0e-b5ff-4bcd-b3d7-7b47fed10509" + "5416d981-5e00-417b-8ae8-931b65e608d1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080409Z:a1accd0e-b5ff-4bcd-b3d7-7b47fed10509" + "WESTEUROPE:20151015T080232Z:5416d981-5e00-417b-8ae8-931b65e608d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 12 Aug 2015 08:04:08 GMT" + "Thu, 15 Oct 2015 08:02:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDI5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4defb3d-1441-4569-822c-08c084898076" + "3384980f-219c-4eb7-82fd-1e07032622c0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://auditcmdlets102.blob.core.windows.net/\",\r\n \"queue\": \"https://auditcmdlets102.queue.core.windows.net/\",\r\n \"table\": \"https://auditcmdlets102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-12T08:03:17.5165184Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key1\": \"12lW0ytUVEgAGALZYqiTQRasRyfmbNcpZZZjVZMjYYySmFTW8jR62YsD/Lu8W5KvNMJG3uMN8nEtW800uBx9rg==\",\r\n \"key2\": \"z7EGV8TuUwVXfODLDM3kiPL3KDigN9uXyroVedMGmWb6SYNwdxicQonDaijzQLrvFmRUSWktTtkjGJKZKhFrtA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "687" + "198" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1256,36 +1228,35 @@ "no-cache" ], "x-ms-request-id": [ - "dc7ad2cc-f0d0-49b4-966e-ac338fb3a7a0" + "4b78b3a9-03da-4028-bfc1-e47b63457996" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "1f4f6077-7192-4247-bcaf-6fbd20a2d0e8" + "4b78b3a9-03da-4028-bfc1-e47b63457996" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080409Z:1f4f6077-7192-4247-bcaf-6fbd20a2d0e8" + "WESTEUROPE:20151015T080309Z:4b78b3a9-03da-4028-bfc1-e47b63457996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 12 Aug 2015 08:04:08 GMT" + "Thu, 15 Oct 2015 08:03:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtYXVkaXQtY21kbGV0LXNlcnZlcjEwMjkvZGF0YWJhc2VzL3NxbC1hdWRpdC1jbWRsZXQtZGIxMDI5L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1293,19 +1264,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c91a89a7-cefd-4ca3-be69-4fa0a6cf1326" + "6992d786-c300-4537-b015-8e0549a4339b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver1Sqlauditcmdletdb1029\",\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1025" + "901" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d653d367-5de1-4ba2-a313-78bb601f7cf5" + "572e0cb7-5516-47dc-8d4e-720a52f80912" ], "X-Content-Type-Options": [ "nosniff" @@ -1314,13 +1285,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14816" ], "x-ms-correlation-request-id": [ - "93ce66df-d955-4f20-9970-db497e64171d" + "05c64b61-b091-44d2-8a07-cfab35cf00e3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080411Z:93ce66df-d955-4f20-9970-db497e64171d" + "WESTEUROPE:20151015T080241Z:05c64b61-b091-44d2-8a07-cfab35cf00e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,7 +1300,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:10 GMT" + "Thu, 15 Oct 2015 08:02:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1338,8 +1309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtYXVkaXQtY21kbGV0LXNlcnZlcjEwMjkvZGF0YWJhc2VzL3NxbC1hdWRpdC1jbWRsZXQtZGIxMDI5L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1347,19 +1318,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "593e5847-276c-4d26-9ff8-91addd88141c" + "a45ae458-2837-4043-b83e-1ee08fa5b0ad" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets1029\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver1Sqlauditcmdletdb1029\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets1029.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg1029\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1025" + "1030" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "aceff192-c40f-4ff5-96b2-87c3514191bd" + "d542b5ce-f428-43b0-9f87-837ce7918e26" ], "X-Content-Type-Options": [ "nosniff" @@ -1368,13 +1339,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14813" ], "x-ms-correlation-request-id": [ - "6800e0d3-4ccf-4860-a0d6-52c924b907ba" + "25b9fbab-5e1f-48c0-84a4-59fafc54f38a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080416Z:6800e0d3-4ccf-4860-a0d6-52c924b907ba" + "WESTEUROPE:20151015T080321Z:25b9fbab-5e1f-48c0-84a4-59fafc54f38a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1383,7 +1354,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:16 GMT" + "Thu, 15 Oct 2015 08:03:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1392,8 +1363,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtYXVkaXQtY21kbGV0LXNlcnZlcjEwMjkvZGF0YWJhc2VzL3NxbC1hdWRpdC1jbWRsZXQtZGIxMDI5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,19 +1372,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c91a89a7-cefd-4ca3-be69-4fa0a6cf1326" + "6992d786-c300-4537-b015-8e0549a4339b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102\",\r\n \"name\": \"sql-audit-cmdlet-db102\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"60239c2e-97e8-4bc5-8c98-e03984151bb2\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-08-12T08:03:07.85Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-08-12T08:33:07.85Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029\",\r\n \"name\": \"sql-audit-cmdlet-db1029\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c7c13893-d81c-4951-bf9e-ceb4cc8c8f00\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-10-14T13:15:47.263Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2015-10-14T13:45:47.263Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "813" + "819" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6e2ac090-7e1c-4cc4-a710-e2e7abd75b46" + "aeeb0aaf-46e2-4c7f-b1be-0eda94e21eb1" ], "X-Content-Type-Options": [ "nosniff" @@ -1422,13 +1393,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14814" ], "x-ms-correlation-request-id": [ - "7d35536a-1a8d-4678-bb79-12c0baa864e8" + "70b6e2e0-ef81-4fad-8f41-394579bcda2e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080411Z:7d35536a-1a8d-4678-bb79-12c0baa864e8" + "WESTEUROPE:20151015T080305Z:70b6e2e0-ef81-4fad-8f41-394579bcda2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1408,7 @@ "no-store, no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:11 GMT" + "Thu, 15 Oct 2015 08:03:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1455,10 +1426,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/galtestadmin\",\r\n \"name\": \"galtestadmin\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4344" + "6400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1470,16 +1441,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14804" ], "x-ms-request-id": [ - "962a5c67-a39e-4cb7-8ddb-4e24a858e4da" + "e994c54f-e50a-498e-a4b4-4a881725218b" ], "x-ms-correlation-request-id": [ - "962a5c67-a39e-4cb7-8ddb-4e24a858e4da" + "e994c54f-e50a-498e-a4b4-4a881725218b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080412Z:962a5c67-a39e-4cb7-8ddb-4e24a858e4da" + "WESTEUROPE:20151015T080307Z:e994c54f-e50a-498e-a4b4-4a881725218b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1459,7 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:12 GMT" + "Thu, 15 Oct 2015 08:03:07 GMT" ] }, "StatusCode": 200 @@ -1503,10 +1474,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Storage/storageAccounts/yrubinv2storage\",\r\n \"name\": \"yrubinv2storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Storage/storageAccounts/auditcmdlets1029\",\r\n \"name\": \"auditcmdlets1029\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "503" + "779" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1518,16 +1489,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14803" ], "x-ms-request-id": [ - "5636be41-7171-4089-9f42-88d8a75f7c93" + "798b712b-3a95-4274-914a-f10045f234a6" ], "x-ms-correlation-request-id": [ - "5636be41-7171-4089-9f42-88d8a75f7c93" + "798b712b-3a95-4274-914a-f10045f234a6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080412Z:5636be41-7171-4089-9f42-88d8a75f7c93" + "WESTEUROPE:20151015T080308Z:798b712b-3a95-4274-914a-f10045f234a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,110 +1507,14 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:12 GMT" + "Thu, 15 Oct 2015 08:03:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets102", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTAy", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n ResourceNotFound\r\n The storage account 'auditcmdlets102' was not found.\r\n", - "ResponseHeaders": { - "Content-Length": [ - "217" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "d33efd3c8c7b098fa94c9cd21ed39145" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 12 Aug 2015 08:04:13 GMT" - ], - "Server": [ - "1.0.6198.254", - "(rd_rdfe_stable.150807-1029)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2a65f63-ec4e-4cbb-8397-37b1bd2e0a6f" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://raniteststorage1122.blob.core.windows.net/\",\r\n \"queue\": \"https://raniteststorage1122.queue.core.windows.net/\",\r\n \"table\": \"https://raniteststorage1122.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-02T13:54:42.9889492Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102\",\r\n \"name\": \"auditcmdlets102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://auditcmdlets102.blob.core.windows.net/\",\r\n \"queue\": \"https://auditcmdlets102.queue.core.windows.net/\",\r\n \"table\": \"https://auditcmdlets102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-12T08:03:17.5165184Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1401" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0bc4554c-ac67-4f6a-a7af-12a9642e2990" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "bd89b017-9479-4533-be9e-a2e5bfde08ca" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080414Z:bd89b017-9479-4533-be9e-a2e5bfde08ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 12 Aug 2015 08:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets102/listKeys?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNsYXNzaWNTdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hdWRpdGNtZGxldHMxMDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.ClassicStorage/storageAccounts/auditcmdlets1029/listKeys?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXVkaXRjbWRsZXRzMTAyOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1650,10 +1525,10 @@ "none" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/auditcmdlets102' under resource group 'sql-audit-cmdlet-test-rg102' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/auditcmdlets1029' under resource group 'sql-audit-cmdlet-test-rg1029' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "187" + "189" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1668,13 +1543,13 @@ "gateway" ], "x-ms-request-id": [ - "c83a551f-7569-4926-a137-4d52c50e0857" + "af147f02-36ae-49ce-8be3-bbebdcd5badb" ], "x-ms-correlation-request-id": [ - "c83a551f-7569-4926-a137-4d52c50e0857" + "af147f02-36ae-49ce-8be3-bbebdcd5badb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080414Z:c83a551f-7569-4926-a137-4d52c50e0857" + "WESTEUROPE:20151015T080308Z:af147f02-36ae-49ce-8be3-bbebdcd5badb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1683,95 +1558,40 @@ "no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:13 GMT" + "Thu, 15 Oct 2015 08:03:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Storage/storageAccounts/auditcmdlets102/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F1ZGl0Y21kbGV0czEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11af458d-128b-4488-9cf9-bdbef03a94a5" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"key1\": \"02tarOdJGSHd8e0UjoUqc5is5+M7mizuHCcWmhBFsdzTc8969gc7/2AKb1tQhVJ2sdG+rbN9T5oZOpjvhn4gzA==\",\r\n \"key2\": \"rdYZunHXKRJz88WAe/WVsibnJEaiDMDqUAy5p3e0Oh7sAsqtvLloa34Hs/+Rj6qa+ccH/RGK29kPT1QaKteT/w==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "197" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "346a8ecc-e58f-4b1c-8160-ffb74311eb8a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "816030fe-f613-49ce-ade1-7bef82eceadf" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080415Z:816030fe-f613-49ce-ade1-7bef82eceadf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 12 Aug 2015 08:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1hdWRpdC1jbWRsZXQtc2VydmVyMTAyL2RhdGFiYXNlcy9zcWwtYXVkaXQtY21kbGV0LWRiMTAyL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1hdWRpdC1jbWRsZXQtdGVzdC1yZzEwMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtYXVkaXQtY21kbGV0LXNlcnZlcjEwMjkvZGF0YWJhc2VzL3NxbC1hdWRpdC1jbWRsZXQtZGIxMDI5L2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"storageAccountKey\": \"02tarOdJGSHd8e0UjoUqc5is5+M7mizuHCcWmhBFsdzTc8969gc7/2AKb1tQhVJ2sdG+rbN9T5oZOpjvhn4gzA==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets1029\",\r\n \"storageAccountKey\": \"12lW0ytUVEgAGALZYqiTQRasRyfmbNcpZZZjVZMjYYySmFTW8jR62YsD/Lu8W5KvNMJG3uMN8nEtW800uBx9rg==\",\r\n \"storageTableEndpoint\": \"https://auditcmdlets1029.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg1029\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver1Sqlauditcmdletdb1029\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "837" + "839" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c91a89a7-cefd-4ca3-be69-4fa0a6cf1326" + "6992d786-c300-4537-b015-8e0549a4339b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg102/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server102/databases/sql-audit-cmdlet-db102/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets102\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver10Sqlauditcmdletdb102\",\r\n \"storageAccountKey\": \"02tarOdJGSHd8e0UjoUqc5is5+M7mizuHCcWmhBFsdzTc8969gc7/2AKb1tQhVJ2sdG+rbN9T5oZOpjvhn4gzA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets102.table.core.windows.net/\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg102\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-audit-cmdlet-test-rg1029/providers/Microsoft.Sql/servers/sql-audit-cmdlet-server1029/databases/sql-audit-cmdlet-db1029/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"auditcmdlets1029\",\r\n \"auditLogsTableName\": \"Sqlauditcmdletserver1Sqlauditcmdletdb1029\",\r\n \"storageAccountKey\": \"12lW0ytUVEgAGALZYqiTQRasRyfmbNcpZZZjVZMjYYySmFTW8jR62YsD/Lu8W5KvNMJG3uMN8nEtW800uBx9rg==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://auditcmdlets1029.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-audit-cmdlet-test-rg1029\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1100" + "1105" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e37807d7-4708-4fd9-9749-b3afeaeb5f86" + "c7108075-2b35-444e-8c23-4fe9547253ea" ], "X-Content-Type-Options": [ "nosniff" @@ -1786,10 +1606,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "867eacf5-3512-4747-978d-7b676ea81bcc" + "43f6813f-4a38-465f-a1d2-0425d658e03c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150812T080416Z:867eacf5-3512-4747-978d-7b676ea81bcc" + "WESTEUROPE:20151015T080317Z:43f6813f-4a38-465f-a1d2-0425d658e03c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1798,58 +1618,19 @@ "no-store, no-cache" ], "Date": [ - "Wed, 12 Aug 2015 08:04:15 GMT" + "Thu, 15 Oct 2015 08:03:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 - }, - { - "RequestUri": "/cca24ec8-99b5-4aa7-9ff6-486e886f304c/services/storageservices/auditcmdlets102", - "EncodedRequestUri": "L2NjYTI0ZWM4LTk5YjUtNGFhNy05ZmY2LTQ4NmU4ODZmMzA0Yy9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvYXVkaXRjbWRsZXRzMTAy", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-10-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "\r\n ResourceNotFound\r\n The storage account 'auditcmdlets102' was not found.\r\n", - "ResponseHeaders": { - "Content-Length": [ - "217" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-servedbyregion": [ - "ussouth3" - ], - "x-ms-request-id": [ - "960492edad4003abb27747b56b76d94e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 12 Aug 2015 08:04:19 GMT" - ], - "Server": [ - "1.0.6198.254", - "(rd_rdfe_stable.150807-1029)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 404 } ], "Names": {}, "Variables": { - "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" + "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c", + "User": "yrubin@microsoft.com", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json index 92191020f0de..9d9c3dfc57ff 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14979" ], "x-ms-request-id": [ - "bbbc4482-b93d-4b9e-85a4-142db451178c" + "762798fe-3c56-4448-b014-798437f77ef0" ], "x-ms-correlation-request-id": [ - "bbbc4482-b93d-4b9e-85a4-142db451178c" + "762798fe-3c56-4448-b014-798437f77ef0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T083948Z:bbbc4482-b93d-4b9e-85a4-142db451178c" + "NORTHEUROPE:20151022T122313Z:762798fe-3c56-4448-b014-798437f77ef0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:39:47 GMT" + "Thu, 22 Oct 2015 12:23:13 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "f797284b-7e5a-4eb2-9a88-64a44c657b5c" + "b577619f-dc7f-4844-baf1-21b933774c60" ], "x-ms-correlation-request-id": [ - "f797284b-7e5a-4eb2-9a88-64a44c657b5c" + "b577619f-dc7f-4844-baf1-21b933774c60" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T083952Z:f797284b-7e5a-4eb2-9a88-64a44c657b5c" + "NORTHEUROPE:20151022T122317Z:b577619f-dc7f-4844-baf1-21b933774c60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:39:51 GMT" + "Thu, 22 Oct 2015 12:23:16 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14978" ], "x-ms-request-id": [ - "36c20ee9-a5a2-4beb-819d-1d826565dfa8" + "f3487c11-bc68-48a7-bf83-6dd4f4be101f" ], "x-ms-correlation-request-id": [ - "36c20ee9-a5a2-4beb-819d-1d826565dfa8" + "f3487c11-bc68-48a7-bf83-6dd4f4be101f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T083953Z:36c20ee9-a5a2-4beb-819d-1d826565dfa8" + "NORTHEUROPE:20151022T122318Z:f3487c11-bc68-48a7-bf83-6dd4f4be101f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:39:53 GMT" + "Thu, 22 Oct 2015 12:23:18 GMT" ] }, "StatusCode": 200 @@ -178,10 +178,10 @@ "no-cache" ], "x-ms-request-id": [ - "7cc5c20c-0eea-43a6-a4c6-d246ffd0f006" + "a2786c5d-808d-4fac-9265-896081e5bb0e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14968" ], "x-ms-correlation-request-id": [ - "6afbada5-2aa0-4646-bfb4-720484774e17" + "b52d98bb-97f4-4f4c-9cd4-83c6f3797f70" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T083953Z:6afbada5-2aa0-4646-bfb4-720484774e17" + "NORTHEUROPE:20151022T122318Z:b52d98bb-97f4-4f4c-9cd4-83c6f3797f70" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:39:53 GMT" + "Thu, 22 Oct 2015 12:23:18 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -232,7 +232,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-14T08:39:58.9619351Z\",\r\n \"duration\": \"PT3.4056035S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-22T12:23:23.2011325Z\",\r\n \"duration\": \"PT3.3265858S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2303" @@ -247,16 +247,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "8e25ab1d-ca32-4bc3-b335-01544f6307c7" + "1ad4f9ae-c021-4fc0-86c3-cb396899f4d7" ], "x-ms-correlation-request-id": [ - "8e25ab1d-ca32-4bc3-b335-01544f6307c7" + "1ad4f9ae-c021-4fc0-86c3-cb396899f4d7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084000Z:8e25ab1d-ca32-4bc3-b335-01544f6307c7" + "NORTHEUROPE:20151022T122324Z:1ad4f9ae-c021-4fc0-86c3-cb396899f4d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:00 GMT" + "Thu, 22 Oct 2015 12:23:24 GMT" ] }, "StatusCode": 201 @@ -295,16 +295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14977" ], "x-ms-request-id": [ - "f7703a67-d6d7-426a-82cd-29cf413ac361" + "e461e8f7-e418-4a49-9e41-b25ee92a31a4" ], "x-ms-correlation-request-id": [ - "f7703a67-d6d7-426a-82cd-29cf413ac361" + "e461e8f7-e418-4a49-9e41-b25ee92a31a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084002Z:f7703a67-d6d7-426a-82cd-29cf413ac361" + "NORTHEUROPE:20151022T122325Z:e461e8f7-e418-4a49-9e41-b25ee92a31a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,7 +313,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:02 GMT" + "Thu, 22 Oct 2015 12:23:25 GMT" ] }, "StatusCode": 200 @@ -343,16 +343,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14975" ], "x-ms-request-id": [ - "bf44a660-269a-4168-ab7f-4634fd4f3b35" + "3f23e82e-3e5f-4d0a-8dbf-22989ec729f4" ], "x-ms-correlation-request-id": [ - "bf44a660-269a-4168-ab7f-4634fd4f3b35" + "3f23e82e-3e5f-4d0a-8dbf-22989ec729f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084006Z:bf44a660-269a-4168-ab7f-4634fd4f3b35" + "NORTHEUROPE:20151022T122329Z:3f23e82e-3e5f-4d0a-8dbf-22989ec729f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,7 +361,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:05 GMT" + "Thu, 22 Oct 2015 12:23:29 GMT" ] }, "StatusCode": 200 @@ -391,16 +391,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "14973" ], "x-ms-request-id": [ - "c12a4944-bfaa-4db3-839a-bd84d0adc915" + "3270637e-138f-4d4b-a002-bf03d81c2a96" ], "x-ms-correlation-request-id": [ - "c12a4944-bfaa-4db3-839a-bd84d0adc915" + "3270637e-138f-4d4b-a002-bf03d81c2a96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084009Z:c12a4944-bfaa-4db3-839a-bd84d0adc915" + "NORTHEUROPE:20151022T122333Z:3270637e-138f-4d4b-a002-bf03d81c2a96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,7 +409,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:09 GMT" + "Thu, 22 Oct 2015 12:23:32 GMT" ] }, "StatusCode": 200 @@ -439,16 +439,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "14971" ], "x-ms-request-id": [ - "ae34a27f-223d-44f2-ab92-65ad80778f82" + "5ae45a60-acd8-405e-8868-82346248d022" ], "x-ms-correlation-request-id": [ - "ae34a27f-223d-44f2-ab92-65ad80778f82" + "5ae45a60-acd8-405e-8868-82346248d022" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084013Z:ae34a27f-223d-44f2-ab92-65ad80778f82" + "NORTHEUROPE:20151022T122337Z:5ae45a60-acd8-405e-8868-82346248d022" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,7 +457,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:13 GMT" + "Thu, 22 Oct 2015 12:23:36 GMT" ] }, "StatusCode": 200 @@ -487,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14969" ], "x-ms-request-id": [ - "e187ef99-291c-43aa-baa8-e01826ac702c" + "25e8325c-74bd-4cfd-8e03-5fe9828e526e" ], "x-ms-correlation-request-id": [ - "e187ef99-291c-43aa-baa8-e01826ac702c" + "25e8325c-74bd-4cfd-8e03-5fe9828e526e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084017Z:e187ef99-291c-43aa-baa8-e01826ac702c" + "NORTHEUROPE:20151022T122340Z:25e8325c-74bd-4cfd-8e03-5fe9828e526e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +505,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:16 GMT" + "Thu, 22 Oct 2015 12:23:40 GMT" ] }, "StatusCode": 200 @@ -535,16 +535,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14967" ], "x-ms-request-id": [ - "350d12c2-c076-4f05-a389-7b4c822d7de3" + "967f19f5-33fa-42f8-9e82-50506a8f79fa" ], "x-ms-correlation-request-id": [ - "350d12c2-c076-4f05-a389-7b4c822d7de3" + "967f19f5-33fa-42f8-9e82-50506a8f79fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084020Z:350d12c2-c076-4f05-a389-7b4c822d7de3" + "NORTHEUROPE:20151022T122344Z:967f19f5-33fa-42f8-9e82-50506a8f79fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +553,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:20 GMT" + "Thu, 22 Oct 2015 12:23:43 GMT" ] }, "StatusCode": 200 @@ -583,16 +583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14965" ], "x-ms-request-id": [ - "173d3eb7-018c-46f3-af9d-eb90aef89307" + "678d5299-6eb4-4dfd-be4e-fa95e683883e" ], "x-ms-correlation-request-id": [ - "173d3eb7-018c-46f3-af9d-eb90aef89307" + "678d5299-6eb4-4dfd-be4e-fa95e683883e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084024Z:173d3eb7-018c-46f3-af9d-eb90aef89307" + "NORTHEUROPE:20151022T122348Z:678d5299-6eb4-4dfd-be4e-fa95e683883e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,7 +601,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:23 GMT" + "Thu, 22 Oct 2015 12:23:47 GMT" ] }, "StatusCode": 200 @@ -631,16 +631,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14963" ], "x-ms-request-id": [ - "106c2252-e562-4bf7-ba9c-41ccfda87c88" + "17886523-fd08-424e-a54d-13fe04766ef9" ], "x-ms-correlation-request-id": [ - "106c2252-e562-4bf7-ba9c-41ccfda87c88" + "17886523-fd08-424e-a54d-13fe04766ef9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084028Z:106c2252-e562-4bf7-ba9c-41ccfda87c88" + "NORTHEUROPE:20151022T122351Z:17886523-fd08-424e-a54d-13fe04766ef9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +649,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:27 GMT" + "Thu, 22 Oct 2015 12:23:51 GMT" ] }, "StatusCode": 200 @@ -679,16 +679,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14960" ], "x-ms-request-id": [ - "4d31da93-a2cc-49dd-8150-8fd13d9dc2cc" + "c424326f-e337-4740-9886-68b8f26aa9f1" ], "x-ms-correlation-request-id": [ - "4d31da93-a2cc-49dd-8150-8fd13d9dc2cc" + "c424326f-e337-4740-9886-68b8f26aa9f1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084031Z:4d31da93-a2cc-49dd-8150-8fd13d9dc2cc" + "NORTHEUROPE:20151022T122355Z:c424326f-e337-4740-9886-68b8f26aa9f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +697,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:31 GMT" + "Thu, 22 Oct 2015 12:23:54 GMT" ] }, "StatusCode": 200 @@ -727,16 +727,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14958" ], "x-ms-request-id": [ - "204e7a71-c3eb-416d-97f7-b29cad8798f1" + "5e714bc6-3e72-46d4-843b-ce4a12dec7fb" ], "x-ms-correlation-request-id": [ - "204e7a71-c3eb-416d-97f7-b29cad8798f1" + "5e714bc6-3e72-46d4-843b-ce4a12dec7fb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084035Z:204e7a71-c3eb-416d-97f7-b29cad8798f1" + "NORTHEUROPE:20151022T122359Z:5e714bc6-3e72-46d4-843b-ce4a12dec7fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,7 +745,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:34 GMT" + "Thu, 22 Oct 2015 12:23:58 GMT" ] }, "StatusCode": 200 @@ -775,16 +775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "14956" ], "x-ms-request-id": [ - "b0a0492a-7977-4653-ad67-d48248928ece" + "50c33583-0924-4d42-9b0a-19c5d8f3fb60" ], "x-ms-correlation-request-id": [ - "b0a0492a-7977-4653-ad67-d48248928ece" + "50c33583-0924-4d42-9b0a-19c5d8f3fb60" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084040Z:b0a0492a-7977-4653-ad67-d48248928ece" + "NORTHEUROPE:20151022T122402Z:50c33583-0924-4d42-9b0a-19c5d8f3fb60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +793,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:40 GMT" + "Thu, 22 Oct 2015 12:24:02 GMT" ] }, "StatusCode": 200 @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14954" ], "x-ms-request-id": [ - "5794f8a8-f464-4fb4-ae93-97e18b4d579a" + "2ddfbde6-f64c-4af4-a588-4d3b59b3e057" ], "x-ms-correlation-request-id": [ - "5794f8a8-f464-4fb4-ae93-97e18b4d579a" + "2ddfbde6-f64c-4af4-a588-4d3b59b3e057" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084044Z:5794f8a8-f464-4fb4-ae93-97e18b4d579a" + "NORTHEUROPE:20151022T122406Z:2ddfbde6-f64c-4af4-a588-4d3b59b3e057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:43 GMT" + "Thu, 22 Oct 2015 12:24:06 GMT" ] }, "StatusCode": 200 @@ -871,16 +871,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14952" ], "x-ms-request-id": [ - "9f832faa-3ecb-4058-b79f-028eddcbf119" + "e480f13c-7aca-44a4-9086-932bb7f0789d" ], "x-ms-correlation-request-id": [ - "9f832faa-3ecb-4058-b79f-028eddcbf119" + "e480f13c-7aca-44a4-9086-932bb7f0789d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084047Z:9f832faa-3ecb-4058-b79f-028eddcbf119" + "NORTHEUROPE:20151022T122410Z:e480f13c-7aca-44a4-9086-932bb7f0789d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +889,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:47 GMT" + "Thu, 22 Oct 2015 12:24:10 GMT" ] }, "StatusCode": 200 @@ -919,16 +919,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14950" ], "x-ms-request-id": [ - "98630a80-9a5c-424c-a2f7-a48318ed1dfe" + "9d37374c-2207-4618-9d68-a19113293bf3" ], "x-ms-correlation-request-id": [ - "98630a80-9a5c-424c-a2f7-a48318ed1dfe" + "9d37374c-2207-4618-9d68-a19113293bf3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084051Z:98630a80-9a5c-424c-a2f7-a48318ed1dfe" + "NORTHEUROPE:20151022T122413Z:9d37374c-2207-4618-9d68-a19113293bf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,7 +937,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:50 GMT" + "Thu, 22 Oct 2015 12:24:13 GMT" ] }, "StatusCode": 200 @@ -967,16 +967,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14948" ], "x-ms-request-id": [ - "747e82b1-c236-44db-ae0a-b02dd2897ace" + "4c26f9f2-30c7-4196-8c4a-24deb417e6f6" ], "x-ms-correlation-request-id": [ - "747e82b1-c236-44db-ae0a-b02dd2897ace" + "4c26f9f2-30c7-4196-8c4a-24deb417e6f6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084055Z:747e82b1-c236-44db-ae0a-b02dd2897ace" + "NORTHEUROPE:20151022T122417Z:4c26f9f2-30c7-4196-8c4a-24deb417e6f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,7 +985,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:54 GMT" + "Thu, 22 Oct 2015 12:24:16 GMT" ] }, "StatusCode": 200 @@ -1015,16 +1015,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14946" ], "x-ms-request-id": [ - "bbf16e6b-3c62-437f-be92-eebf515b61f7" + "4a3b3873-e681-41aa-9a12-907338e5a160" ], "x-ms-correlation-request-id": [ - "bbf16e6b-3c62-437f-be92-eebf515b61f7" + "4a3b3873-e681-41aa-9a12-907338e5a160" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084059Z:bbf16e6b-3c62-437f-be92-eebf515b61f7" + "NORTHEUROPE:20151022T122421Z:4a3b3873-e681-41aa-9a12-907338e5a160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +1033,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:58 GMT" + "Thu, 22 Oct 2015 12:24:20 GMT" ] }, "StatusCode": 200 @@ -1063,16 +1063,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14944" ], "x-ms-request-id": [ - "08bb09e6-499f-4384-a06e-67873ab9137c" + "937a15f0-5506-4815-9aac-106703b04129" ], "x-ms-correlation-request-id": [ - "08bb09e6-499f-4384-a06e-67873ab9137c" + "937a15f0-5506-4815-9aac-106703b04129" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084103Z:08bb09e6-499f-4384-a06e-67873ab9137c" + "NORTHEUROPE:20151022T122424Z:937a15f0-5506-4815-9aac-106703b04129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1081,7 +1081,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:02 GMT" + "Thu, 22 Oct 2015 12:24:24 GMT" ] }, "StatusCode": 200 @@ -1111,16 +1111,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14942" ], "x-ms-request-id": [ - "f13c522c-13da-4386-adb2-cd28a6bb4167" + "97fd7623-3aaf-48d9-a403-8dc1fbe54177" ], "x-ms-correlation-request-id": [ - "f13c522c-13da-4386-adb2-cd28a6bb4167" + "97fd7623-3aaf-48d9-a403-8dc1fbe54177" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084107Z:f13c522c-13da-4386-adb2-cd28a6bb4167" + "NORTHEUROPE:20151022T122428Z:97fd7623-3aaf-48d9-a403-8dc1fbe54177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1129,7 +1129,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:06 GMT" + "Thu, 22 Oct 2015 12:24:27 GMT" ] }, "StatusCode": 200 @@ -1144,10 +1144,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "663" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1159,16 +1159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14940" ], "x-ms-request-id": [ - "54a7d1c9-5f7e-4e4f-9de3-e9d18eb70b82" + "a37031b6-026b-4f5b-9265-fd92e90947a1" ], "x-ms-correlation-request-id": [ - "54a7d1c9-5f7e-4e4f-9de3-e9d18eb70b82" + "a37031b6-026b-4f5b-9265-fd92e90947a1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084110Z:54a7d1c9-5f7e-4e4f-9de3-e9d18eb70b82" + "NORTHEUROPE:20151022T122432Z:a37031b6-026b-4f5b-9265-fd92e90947a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,7 +1177,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:10 GMT" + "Thu, 22 Oct 2015 12:24:32 GMT" ] }, "StatusCode": 200 @@ -1192,10 +1192,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "663" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,16 +1207,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14938" ], "x-ms-request-id": [ - "a62bc330-f5d1-4e1f-869d-7d3559c91672" + "a6221bdf-53b3-4315-bf04-26d9566c0ff3" ], "x-ms-correlation-request-id": [ - "a62bc330-f5d1-4e1f-869d-7d3559c91672" + "a6221bdf-53b3-4315-bf04-26d9566c0ff3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084114Z:a62bc330-f5d1-4e1f-869d-7d3559c91672" + "NORTHEUROPE:20151022T122436Z:a6221bdf-53b3-4315-bf04-26d9566c0ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1225,7 +1225,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:13 GMT" + "Thu, 22 Oct 2015 12:24:36 GMT" ] }, "StatusCode": 200 @@ -1240,7 +1240,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -1255,16 +1255,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14936" ], "x-ms-request-id": [ - "9e45395e-d5c4-4975-b8cc-5b82d7a10477" + "d937dee1-ba46-4a95-8e87-827c3a58ba42" ], "x-ms-correlation-request-id": [ - "9e45395e-d5c4-4975-b8cc-5b82d7a10477" + "d937dee1-ba46-4a95-8e87-827c3a58ba42" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084118Z:9e45395e-d5c4-4975-b8cc-5b82d7a10477" + "NORTHEUROPE:20151022T122440Z:d937dee1-ba46-4a95-8e87-827c3a58ba42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:18 GMT" + "Thu, 22 Oct 2015 12:24:39 GMT" ] }, "StatusCode": 200 @@ -1288,10 +1288,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1303,16 +1303,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14934" ], "x-ms-request-id": [ - "b56155cd-dda2-4fee-9cca-f9362b15a47c" + "0f8fc02a-c385-4127-b484-517d3cea459a" ], "x-ms-correlation-request-id": [ - "b56155cd-dda2-4fee-9cca-f9362b15a47c" + "0f8fc02a-c385-4127-b484-517d3cea459a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084122Z:b56155cd-dda2-4fee-9cca-f9362b15a47c" + "NORTHEUROPE:20151022T122443Z:0f8fc02a-c385-4127-b484-517d3cea459a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,7 +1321,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:22 GMT" + "Thu, 22 Oct 2015 12:24:43 GMT" ] }, "StatusCode": 200 @@ -1336,10 +1336,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1351,16 +1351,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14931" ], "x-ms-request-id": [ - "ca6a0f45-8cbf-43fd-a6dc-dc13f156e8c8" + "5aad68b1-8e98-4f6f-a094-cb4cd09cca0c" ], "x-ms-correlation-request-id": [ - "ca6a0f45-8cbf-43fd-a6dc-dc13f156e8c8" + "5aad68b1-8e98-4f6f-a094-cb4cd09cca0c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084126Z:ca6a0f45-8cbf-43fd-a6dc-dc13f156e8c8" + "NORTHEUROPE:20151022T122447Z:5aad68b1-8e98-4f6f-a094-cb4cd09cca0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1369,7 +1369,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:26 GMT" + "Thu, 22 Oct 2015 12:24:47 GMT" ] }, "StatusCode": 200 @@ -1384,10 +1384,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1399,16 +1399,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14929" ], "x-ms-request-id": [ - "ef6e38b5-d629-47e9-8a8e-3f04227bd0b3" + "9bd5ba8b-0dd7-4726-91c7-f063c0436322" ], "x-ms-correlation-request-id": [ - "ef6e38b5-d629-47e9-8a8e-3f04227bd0b3" + "9bd5ba8b-0dd7-4726-91c7-f063c0436322" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084130Z:ef6e38b5-d629-47e9-8a8e-3f04227bd0b3" + "NORTHEUROPE:20151022T122451Z:9bd5ba8b-0dd7-4726-91c7-f063c0436322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1417,7 +1417,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:30 GMT" + "Thu, 22 Oct 2015 12:24:51 GMT" ] }, "StatusCode": 200 @@ -1432,10 +1432,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1447,16 +1447,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14927" ], "x-ms-request-id": [ - "0174f80b-4a1f-44f1-af83-aef3f652e104" + "8a1801b8-27c7-4fbf-9487-055a7d5745bd" ], "x-ms-correlation-request-id": [ - "0174f80b-4a1f-44f1-af83-aef3f652e104" + "8a1801b8-27c7-4fbf-9487-055a7d5745bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084134Z:0174f80b-4a1f-44f1-af83-aef3f652e104" + "NORTHEUROPE:20151022T122455Z:8a1801b8-27c7-4fbf-9487-055a7d5745bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,7 +1465,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:33 GMT" + "Thu, 22 Oct 2015 12:24:55 GMT" ] }, "StatusCode": 200 @@ -1480,10 +1480,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1495,16 +1495,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14925" ], "x-ms-request-id": [ - "7410ae0b-1727-4957-a7aa-546aec233a2c" + "1da6288e-c0f0-4672-b1c6-de7c1693ec46" ], "x-ms-correlation-request-id": [ - "7410ae0b-1727-4957-a7aa-546aec233a2c" + "1da6288e-c0f0-4672-b1c6-de7c1693ec46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084138Z:7410ae0b-1727-4957-a7aa-546aec233a2c" + "NORTHEUROPE:20151022T122459Z:1da6288e-c0f0-4672-b1c6-de7c1693ec46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1513,7 +1513,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:37 GMT" + "Thu, 22 Oct 2015 12:24:58 GMT" ] }, "StatusCode": 200 @@ -1528,10 +1528,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1543,16 +1543,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14923" ], "x-ms-request-id": [ - "4a4de62f-8ec1-45a2-bc0b-442809085a05" + "0f2eeec3-75cf-4725-a34b-332e3f1b96f5" ], "x-ms-correlation-request-id": [ - "4a4de62f-8ec1-45a2-bc0b-442809085a05" + "0f2eeec3-75cf-4725-a34b-332e3f1b96f5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084142Z:4a4de62f-8ec1-45a2-bc0b-442809085a05" + "NORTHEUROPE:20151022T122503Z:0f2eeec3-75cf-4725-a34b-332e3f1b96f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1561,7 +1561,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:41 GMT" + "Thu, 22 Oct 2015 12:25:03 GMT" ] }, "StatusCode": 200 @@ -1576,10 +1576,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1591,16 +1591,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14921" ], "x-ms-request-id": [ - "300836cb-098a-4450-b743-c3979da804c9" + "f7141986-ca9c-4b0b-987c-36e3bf834762" ], "x-ms-correlation-request-id": [ - "300836cb-098a-4450-b743-c3979da804c9" + "f7141986-ca9c-4b0b-987c-36e3bf834762" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084146Z:300836cb-098a-4450-b743-c3979da804c9" + "NORTHEUROPE:20151022T122507Z:f7141986-ca9c-4b0b-987c-36e3bf834762" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1609,7 +1609,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:45 GMT" + "Thu, 22 Oct 2015 12:25:06 GMT" ] }, "StatusCode": 200 @@ -1624,10 +1624,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:24:40.9196314Z\",\r\n \"duration\": \"PT9.8765454S\",\r\n \"trackingId\": \"1bda5d90-029a-4999-8741-d4a3c364ec97\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,16 +1639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14919" ], "x-ms-request-id": [ - "211e47e5-c319-4284-9a8e-653910709e26" + "1b54617b-e596-471c-82f4-597f9c1916f2" ], "x-ms-correlation-request-id": [ - "211e47e5-c319-4284-9a8e-653910709e26" + "1b54617b-e596-471c-82f4-597f9c1916f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084150Z:211e47e5-c319-4284-9a8e-653910709e26" + "NORTHEUROPE:20151022T122511Z:1b54617b-e596-471c-82f4-597f9c1916f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1657,7 +1657,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:49 GMT" + "Thu, 22 Oct 2015 12:25:11 GMT" ] }, "StatusCode": 200 @@ -1672,7 +1672,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:23.4087711Z\",\r\n \"duration\": \"PT10.3849552S\",\r\n \"trackingId\": \"ac7b39ac-16ad-49d1-a004-481a1cca9bad\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:13.0603154Z\",\r\n \"duration\": \"PT42.0172294S\",\r\n \"trackingId\": \"1c9c3f88-e010-4060-bc37-08c222cb6649\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1687,16 +1687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14917" ], "x-ms-request-id": [ - "ba2e4aa4-6f7b-4c01-b75b-e6149df1f368" + "c9d0c140-1f6f-43e6-9f3b-4574dec5b736" ], "x-ms-correlation-request-id": [ - "ba2e4aa4-6f7b-4c01-b75b-e6149df1f368" + "c9d0c140-1f6f-43e6-9f3b-4574dec5b736" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084154Z:ba2e4aa4-6f7b-4c01-b75b-e6149df1f368" + "NORTHEUROPE:20151022T122515Z:c9d0c140-1f6f-43e6-9f3b-4574dec5b736" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1705,7 +1705,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:53 GMT" + "Thu, 22 Oct 2015 12:25:15 GMT" ] }, "StatusCode": 200 @@ -1720,7 +1720,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:55.7756304Z\",\r\n \"duration\": \"PT42.7518145S\",\r\n \"trackingId\": \"ddc00e59-b8d1-4da8-9b7d-22cb6ed68ad7\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:13.0603154Z\",\r\n \"duration\": \"PT42.0172294S\",\r\n \"trackingId\": \"1c9c3f88-e010-4060-bc37-08c222cb6649\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1735,16 +1735,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14915" ], "x-ms-request-id": [ - "5351d394-7b0c-49cd-9270-a35593baa080" + "e0c4e395-8dae-47e4-a2ab-816ed652e629" ], "x-ms-correlation-request-id": [ - "5351d394-7b0c-49cd-9270-a35593baa080" + "e0c4e395-8dae-47e4-a2ab-816ed652e629" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084158Z:5351d394-7b0c-49cd-9270-a35593baa080" + "NORTHEUROPE:20151022T122519Z:e0c4e395-8dae-47e4-a2ab-816ed652e629" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,7 +1753,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:57 GMT" + "Thu, 22 Oct 2015 12:25:18 GMT" ] }, "StatusCode": 200 @@ -1768,7 +1768,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:55.7756304Z\",\r\n \"duration\": \"PT42.7518145S\",\r\n \"trackingId\": \"ddc00e59-b8d1-4da8-9b7d-22cb6ed68ad7\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:13.0603154Z\",\r\n \"duration\": \"PT42.0172294S\",\r\n \"trackingId\": \"1c9c3f88-e010-4060-bc37-08c222cb6649\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1783,16 +1783,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "14913" ], "x-ms-request-id": [ - "e45bc51b-7c41-4353-a202-475e540789d4" + "efeac8e1-7104-47c7-b9df-266af93b3f70" ], "x-ms-correlation-request-id": [ - "e45bc51b-7c41-4353-a202-475e540789d4" + "efeac8e1-7104-47c7-b9df-266af93b3f70" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084202Z:e45bc51b-7c41-4353-a202-475e540789d4" + "NORTHEUROPE:20151022T122523Z:efeac8e1-7104-47c7-b9df-266af93b3f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1801,7 +1801,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:01 GMT" + "Thu, 22 Oct 2015 12:25:22 GMT" ] }, "StatusCode": 200 @@ -1816,7 +1816,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:55.7756304Z\",\r\n \"duration\": \"PT42.7518145S\",\r\n \"trackingId\": \"ddc00e59-b8d1-4da8-9b7d-22cb6ed68ad7\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:13.0603154Z\",\r\n \"duration\": \"PT42.0172294S\",\r\n \"trackingId\": \"1c9c3f88-e010-4060-bc37-08c222cb6649\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1831,16 +1831,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14911" ], "x-ms-request-id": [ - "4e3a0a9f-4bcc-49d7-94a3-5655daca8a18" + "c23d8d69-b8ee-457c-b339-41f485ba872f" ], "x-ms-correlation-request-id": [ - "4e3a0a9f-4bcc-49d7-94a3-5655daca8a18" + "c23d8d69-b8ee-457c-b339-41f485ba872f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084205Z:4e3a0a9f-4bcc-49d7-94a3-5655daca8a18" + "NORTHEUROPE:20151022T122527Z:c23d8d69-b8ee-457c-b339-41f485ba872f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1849,7 +1849,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:05 GMT" + "Thu, 22 Oct 2015 12:25:27 GMT" ] }, "StatusCode": 200 @@ -1864,7 +1864,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:55.7756304Z\",\r\n \"duration\": \"PT42.7518145S\",\r\n \"trackingId\": \"ddc00e59-b8d1-4da8-9b7d-22cb6ed68ad7\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:29.2221107Z\",\r\n \"duration\": \"PT58.1790247S\",\r\n \"trackingId\": \"ba470994-5cf0-466d-82bb-a26d34bb7ac2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1879,16 +1879,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14908" ], "x-ms-request-id": [ - "6d13f8dd-44fd-46c6-b1b9-1572ec58e8a0" + "a98487b9-dd69-4700-b182-9c85a91cb965" ], "x-ms-correlation-request-id": [ - "6d13f8dd-44fd-46c6-b1b9-1572ec58e8a0" + "a98487b9-dd69-4700-b182-9c85a91cb965" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084209Z:6d13f8dd-44fd-46c6-b1b9-1572ec58e8a0" + "NORTHEUROPE:20151022T122531Z:a98487b9-dd69-4700-b182-9c85a91cb965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,7 +1897,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:08 GMT" + "Thu, 22 Oct 2015 12:25:30 GMT" ] }, "StatusCode": 200 @@ -1912,7 +1912,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:41:55.7756304Z\",\r\n \"duration\": \"PT42.7518145S\",\r\n \"trackingId\": \"ddc00e59-b8d1-4da8-9b7d-22cb6ed68ad7\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:29.2221107Z\",\r\n \"duration\": \"PT58.1790247S\",\r\n \"trackingId\": \"ba470994-5cf0-466d-82bb-a26d34bb7ac2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1927,16 +1927,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14694" + "14906" ], "x-ms-request-id": [ - "845c978b-8db3-4ecc-bc9a-19ba21636c86" + "c036d102-e470-42b6-bd54-95fea6eacdb8" ], "x-ms-correlation-request-id": [ - "845c978b-8db3-4ecc-bc9a-19ba21636c86" + "c036d102-e470-42b6-bd54-95fea6eacdb8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084213Z:845c978b-8db3-4ecc-bc9a-19ba21636c86" + "NORTHEUROPE:20151022T122535Z:c036d102-e470-42b6-bd54-95fea6eacdb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1945,7 +1945,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:13 GMT" + "Thu, 22 Oct 2015 12:25:34 GMT" ] }, "StatusCode": 200 @@ -1960,10 +1960,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:13.2685888Z\",\r\n \"duration\": \"PT1M0.2447729S\",\r\n \"trackingId\": \"edeb7f78-9cff-4ba7-ae3b-c135cb27114c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:29.2221107Z\",\r\n \"duration\": \"PT58.1790247S\",\r\n \"trackingId\": \"ba470994-5cf0-466d-82bb-a26d34bb7ac2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1975,16 +1975,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14904" ], "x-ms-request-id": [ - "d23d63c9-98f6-44c1-959a-7f781ed0b6df" + "6a8291b6-0184-422e-949e-3794544399b4" ], "x-ms-correlation-request-id": [ - "d23d63c9-98f6-44c1-959a-7f781ed0b6df" + "6a8291b6-0184-422e-949e-3794544399b4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084217Z:d23d63c9-98f6-44c1-959a-7f781ed0b6df" + "NORTHEUROPE:20151022T122539Z:6a8291b6-0184-422e-949e-3794544399b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1993,7 +1993,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:17 GMT" + "Thu, 22 Oct 2015 12:25:38 GMT" ] }, "StatusCode": 200 @@ -2008,10 +2008,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:13.2685888Z\",\r\n \"duration\": \"PT1M0.2447729S\",\r\n \"trackingId\": \"edeb7f78-9cff-4ba7-ae3b-c135cb27114c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:29.2221107Z\",\r\n \"duration\": \"PT58.1790247S\",\r\n \"trackingId\": \"ba470994-5cf0-466d-82bb-a26d34bb7ac2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2023,16 +2023,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "14902" ], "x-ms-request-id": [ - "ab1954cf-90d2-4cd1-9cee-655fc19cddd9" + "1c367717-3beb-4aba-b040-d4c7b9e277ef" ], "x-ms-correlation-request-id": [ - "ab1954cf-90d2-4cd1-9cee-655fc19cddd9" + "1c367717-3beb-4aba-b040-d4c7b9e277ef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084221Z:ab1954cf-90d2-4cd1-9cee-655fc19cddd9" + "NORTHEUROPE:20151022T122543Z:1c367717-3beb-4aba-b040-d4c7b9e277ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2041,7 +2041,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:21 GMT" + "Thu, 22 Oct 2015 12:25:43 GMT" ] }, "StatusCode": 200 @@ -2056,7 +2056,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:13.2685888Z\",\r\n \"duration\": \"PT1M0.2447729S\",\r\n \"trackingId\": \"edeb7f78-9cff-4ba7-ae3b-c135cb27114c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:46.4518556Z\",\r\n \"duration\": \"PT1M15.4087696S\",\r\n \"trackingId\": \"30cdd37f-ee16-4720-b2bd-8d586134ee1f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2104" @@ -2071,16 +2071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14900" ], "x-ms-request-id": [ - "29dfb224-6eb5-4636-8d8d-dbcc6919234b" + "666ae13c-9dc9-4b8c-9252-87d17c555ffd" ], "x-ms-correlation-request-id": [ - "29dfb224-6eb5-4636-8d8d-dbcc6919234b" + "666ae13c-9dc9-4b8c-9252-87d17c555ffd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084225Z:29dfb224-6eb5-4636-8d8d-dbcc6919234b" + "NORTHEUROPE:20151022T122547Z:666ae13c-9dc9-4b8c-9252-87d17c555ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,7 +2089,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:25 GMT" + "Thu, 22 Oct 2015 12:25:47 GMT" ] }, "StatusCode": 200 @@ -2104,7 +2104,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:13.2685888Z\",\r\n \"duration\": \"PT1M0.2447729S\",\r\n \"trackingId\": \"edeb7f78-9cff-4ba7-ae3b-c135cb27114c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:25:46.4518556Z\",\r\n \"duration\": \"PT1M15.4087696S\",\r\n \"trackingId\": \"30cdd37f-ee16-4720-b2bd-8d586134ee1f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2104" @@ -2119,16 +2119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14686" + "14898" ], "x-ms-request-id": [ - "46cfe468-485e-48fb-9040-19b953207c43" + "b35e81af-4beb-48c9-8613-9ab36416a16a" ], "x-ms-correlation-request-id": [ - "46cfe468-485e-48fb-9040-19b953207c43" + "b35e81af-4beb-48c9-8613-9ab36416a16a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084229Z:46cfe468-485e-48fb-9040-19b953207c43" + "NORTHEUROPE:20151022T122551Z:b35e81af-4beb-48c9-8613-9ab36416a16a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,7 +2137,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:29 GMT" + "Thu, 22 Oct 2015 12:25:51 GMT" ] }, "StatusCode": 200 @@ -2152,10 +2152,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:31.9341034Z\",\r\n \"duration\": \"PT1M18.9102875S\",\r\n \"trackingId\": \"212ed49a-c9bd-4d0a-a7a4-4547292c31c9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:25:53.6582539Z\",\r\n \"duration\": \"PT1M22.6151679S\",\r\n \"trackingId\": \"6e6eb190-5404-4f48-a720-bc30bef2e1f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:33.9394327Z\",\r\n \"duration\": \"PT3.0981914S\",\r\n \"trackingId\": \"6e2e44b6-d7fb-4c09-8f27-1de064f43368\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:24:30.6767549Z\",\r\n \"duration\": \"PT1M6.7432255S\",\r\n \"trackingId\": \"5113e093-f382-49ee-b41e-5bf63b4c67e8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "2106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2167,16 +2167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" + "14896" ], "x-ms-request-id": [ - "937a6eb2-7d4c-462e-863a-8ff7d0099625" + "e8e78c71-b580-43a1-9f57-9650364e23cb" ], "x-ms-correlation-request-id": [ - "937a6eb2-7d4c-462e-863a-8ff7d0099625" + "e8e78c71-b580-43a1-9f57-9650364e23cb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084233Z:937a6eb2-7d4c-462e-863a-8ff7d0099625" + "NORTHEUROPE:20151022T122555Z:e8e78c71-b580-43a1-9f57-9650364e23cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2185,14 +2185,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:33 GMT" + "Thu, 22 Oct 2015 12:25:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,10 +2200,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:42:31.9341034Z\",\r\n \"duration\": \"PT1M18.9102875S\",\r\n \"trackingId\": \"212ed49a-c9bd-4d0a-a7a4-4547292c31c9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2215,16 +2215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14681" + "14976" ], "x-ms-request-id": [ - "371afd91-f068-41a3-ab52-444e5cbbd3d8" + "b92b9b1a-16c8-4378-8201-2283f14fb119" ], "x-ms-correlation-request-id": [ - "371afd91-f068-41a3-ab52-444e5cbbd3d8" + "b92b9b1a-16c8-4378-8201-2283f14fb119" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084237Z:371afd91-f068-41a3-ab52-444e5cbbd3d8" + "NORTHEUROPE:20151022T122326Z:b92b9b1a-16c8-4378-8201-2283f14fb119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,14 +2233,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:36 GMT" + "Thu, 22 Oct 2015 12:23:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2248,10 +2248,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/7EDF8251177544AB\",\r\n \"operationId\": \"7EDF8251177544AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:42:38.6498631Z\",\r\n \"duration\": \"PT1M25.6260472S\",\r\n \"trackingId\": \"10b9e2d5-9191-4bb7-8d2e-ff9622481137\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/0B27DD5464E517FF\",\r\n \"operationId\": \"0B27DD5464E517FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:16.7298217Z\",\r\n \"duration\": \"PT3.7545699S\",\r\n \"trackingId\": \"4c2b9d5d-3b1b-40b7-ade8-66271b9317ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup/operations/DABF5A13192AD824\",\r\n \"operationId\": \"DABF5A13192AD824\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:41:12.8892001Z\",\r\n \"duration\": \"PT1M8.2736612S\",\r\n \"trackingId\": \"dbfeb68f-bedd-4e1d-a89f-5de959702159\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2106" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2263,16 +2263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14679" + "14974" ], "x-ms-request-id": [ - "70c568a1-3f18-47f9-9623-5f36b476343f" + "2e88ce2b-702f-4f06-9c37-f2f8b068bb76" ], "x-ms-correlation-request-id": [ - "70c568a1-3f18-47f9-9623-5f36b476343f" + "2e88ce2b-702f-4f06-9c37-f2f8b068bb76" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084241Z:70c568a1-3f18-47f9-9623-5f36b476343f" + "NORTHEUROPE:20151022T122330Z:2e88ce2b-702f-4f06-9c37-f2f8b068bb76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2281,7 +2281,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:40 GMT" + "Thu, 22 Oct 2015 12:23:29 GMT" ] }, "StatusCode": 200 @@ -2296,10 +2296,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-14T08:39:58.9619351Z\",\r\n \"duration\": \"PT3.4056035S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2303" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2311,16 +2311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14972" ], "x-ms-request-id": [ - "a803f384-29bc-4c91-9749-d72004378f3c" + "98f249d7-7425-4d94-97b2-5f8127417d0e" ], "x-ms-correlation-request-id": [ - "a803f384-29bc-4c91-9749-d72004378f3c" + "98f249d7-7425-4d94-97b2-5f8127417d0e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084003Z:a803f384-29bc-4c91-9749-d72004378f3c" + "NORTHEUROPE:20151022T122334Z:98f249d7-7425-4d94-97b2-5f8127417d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2329,7 +2329,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:02 GMT" + "Thu, 22 Oct 2015 12:23:33 GMT" ] }, "StatusCode": 200 @@ -2344,10 +2344,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,16 +2359,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14970" ], "x-ms-request-id": [ - "f6f90402-be35-45cf-8f58-e8adc3171258" + "69d85497-e855-4891-a4eb-fcabacea982a" ], "x-ms-correlation-request-id": [ - "f6f90402-be35-45cf-8f58-e8adc3171258" + "69d85497-e855-4891-a4eb-fcabacea982a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084006Z:f6f90402-be35-45cf-8f58-e8adc3171258" + "NORTHEUROPE:20151022T122337Z:69d85497-e855-4891-a4eb-fcabacea982a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2377,7 +2377,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:06 GMT" + "Thu, 22 Oct 2015 12:23:37 GMT" ] }, "StatusCode": 200 @@ -2392,10 +2392,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2407,16 +2407,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14968" ], "x-ms-request-id": [ - "c0bc9fb0-8f38-43ad-b46b-a31ef62e5d1d" + "28c81c4a-4596-4901-be04-94ecb128aab1" ], "x-ms-correlation-request-id": [ - "c0bc9fb0-8f38-43ad-b46b-a31ef62e5d1d" + "28c81c4a-4596-4901-be04-94ecb128aab1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084010Z:c0bc9fb0-8f38-43ad-b46b-a31ef62e5d1d" + "NORTHEUROPE:20151022T122341Z:28c81c4a-4596-4901-be04-94ecb128aab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2425,7 +2425,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:10 GMT" + "Thu, 22 Oct 2015 12:23:40 GMT" ] }, "StatusCode": 200 @@ -2440,10 +2440,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,16 +2455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14966" ], "x-ms-request-id": [ - "b679c59a-a598-4a4d-9e81-bd78650d2db1" + "5ae16d59-7e5e-4e57-bb39-fff014532fdd" ], "x-ms-correlation-request-id": [ - "b679c59a-a598-4a4d-9e81-bd78650d2db1" + "5ae16d59-7e5e-4e57-bb39-fff014532fdd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084014Z:b679c59a-a598-4a4d-9e81-bd78650d2db1" + "NORTHEUROPE:20151022T122345Z:5ae16d59-7e5e-4e57-bb39-fff014532fdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2473,7 +2473,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:13 GMT" + "Thu, 22 Oct 2015 12:23:44 GMT" ] }, "StatusCode": 200 @@ -2488,10 +2488,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2503,16 +2503,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14964" ], "x-ms-request-id": [ - "8f6ab7a1-165e-453f-897e-c28a3c786fc6" + "2131b402-31e8-4a3a-af2f-1e84448228bf" ], "x-ms-correlation-request-id": [ - "8f6ab7a1-165e-453f-897e-c28a3c786fc6" + "2131b402-31e8-4a3a-af2f-1e84448228bf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084017Z:8f6ab7a1-165e-453f-897e-c28a3c786fc6" + "NORTHEUROPE:20151022T122348Z:2131b402-31e8-4a3a-af2f-1e84448228bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,7 +2521,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:17 GMT" + "Thu, 22 Oct 2015 12:23:48 GMT" ] }, "StatusCode": 200 @@ -2536,10 +2536,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,16 +2551,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14962" ], "x-ms-request-id": [ - "a013b9ea-7921-4cc4-8cb5-3ce1ed34f53f" + "8963ffac-0ec6-4cdd-83c6-d48138eacb2a" ], "x-ms-correlation-request-id": [ - "a013b9ea-7921-4cc4-8cb5-3ce1ed34f53f" + "8963ffac-0ec6-4cdd-83c6-d48138eacb2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084021Z:a013b9ea-7921-4cc4-8cb5-3ce1ed34f53f" + "NORTHEUROPE:20151022T122352Z:8963ffac-0ec6-4cdd-83c6-d48138eacb2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2569,7 +2569,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:20 GMT" + "Thu, 22 Oct 2015 12:23:52 GMT" ] }, "StatusCode": 200 @@ -2584,10 +2584,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,16 +2599,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14959" ], "x-ms-request-id": [ - "1eeb8733-f3d0-401b-a3e0-dda372f8677a" + "5cc02630-2170-45dd-803a-60a36b156ef3" ], "x-ms-correlation-request-id": [ - "1eeb8733-f3d0-401b-a3e0-dda372f8677a" + "5cc02630-2170-45dd-803a-60a36b156ef3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084025Z:1eeb8733-f3d0-401b-a3e0-dda372f8677a" + "NORTHEUROPE:20151022T122356Z:5cc02630-2170-45dd-803a-60a36b156ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2617,7 +2617,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:24 GMT" + "Thu, 22 Oct 2015 12:23:55 GMT" ] }, "StatusCode": 200 @@ -2632,10 +2632,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2647,16 +2647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" + "14957" ], "x-ms-request-id": [ - "f8bd9b99-e409-4510-a97b-ff62a8a9c311" + "25e76412-2bf7-4668-a65d-5f3a76622e53" ], "x-ms-correlation-request-id": [ - "f8bd9b99-e409-4510-a97b-ff62a8a9c311" + "25e76412-2bf7-4668-a65d-5f3a76622e53" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084028Z:f8bd9b99-e409-4510-a97b-ff62a8a9c311" + "NORTHEUROPE:20151022T122359Z:25e76412-2bf7-4668-a65d-5f3a76622e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,7 +2665,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:28 GMT" + "Thu, 22 Oct 2015 12:23:59 GMT" ] }, "StatusCode": 200 @@ -2680,10 +2680,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,16 +2695,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14955" ], "x-ms-request-id": [ - "a9cd8a0f-00aa-4b9b-8cdf-fa59f6365b14" + "9292513a-2061-4fb1-a63c-00b9232c6880" ], "x-ms-correlation-request-id": [ - "a9cd8a0f-00aa-4b9b-8cdf-fa59f6365b14" + "9292513a-2061-4fb1-a63c-00b9232c6880" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084032Z:a9cd8a0f-00aa-4b9b-8cdf-fa59f6365b14" + "NORTHEUROPE:20151022T122403Z:9292513a-2061-4fb1-a63c-00b9232c6880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2713,7 +2713,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:31 GMT" + "Thu, 22 Oct 2015 12:24:03 GMT" ] }, "StatusCode": 200 @@ -2728,10 +2728,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2743,16 +2743,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14953" ], "x-ms-request-id": [ - "f7d7dc4a-4a9c-4256-a708-15b1d9d0b8b0" + "5e5fdb48-fd02-4f0f-a262-31ec7d88c0aa" ], "x-ms-correlation-request-id": [ - "f7d7dc4a-4a9c-4256-a708-15b1d9d0b8b0" + "5e5fdb48-fd02-4f0f-a262-31ec7d88c0aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084037Z:f7d7dc4a-4a9c-4256-a708-15b1d9d0b8b0" + "NORTHEUROPE:20151022T122407Z:5e5fdb48-fd02-4f0f-a262-31ec7d88c0aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2761,7 +2761,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:37 GMT" + "Thu, 22 Oct 2015 12:24:06 GMT" ] }, "StatusCode": 200 @@ -2776,10 +2776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2791,16 +2791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14951" ], "x-ms-request-id": [ - "dfcb2a51-3fd0-4d97-8fa4-74ee7e7f6d6e" + "ad794a19-baa6-42de-994a-f5abf1a1c9f9" ], "x-ms-correlation-request-id": [ - "dfcb2a51-3fd0-4d97-8fa4-74ee7e7f6d6e" + "ad794a19-baa6-42de-994a-f5abf1a1c9f9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084041Z:dfcb2a51-3fd0-4d97-8fa4-74ee7e7f6d6e" + "NORTHEUROPE:20151022T122410Z:ad794a19-baa6-42de-994a-f5abf1a1c9f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2809,7 +2809,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:40 GMT" + "Thu, 22 Oct 2015 12:24:10 GMT" ] }, "StatusCode": 200 @@ -2824,10 +2824,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2839,16 +2839,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14949" ], "x-ms-request-id": [ - "f25e1669-2cdb-4c28-b75d-eef10746752b" + "fa322a44-0194-4176-b093-75c4c13e3fc5" ], "x-ms-correlation-request-id": [ - "f25e1669-2cdb-4c28-b75d-eef10746752b" + "fa322a44-0194-4176-b093-75c4c13e3fc5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084044Z:f25e1669-2cdb-4c28-b75d-eef10746752b" + "NORTHEUROPE:20151022T122414Z:fa322a44-0194-4176-b093-75c4c13e3fc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2857,7 +2857,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:44 GMT" + "Thu, 22 Oct 2015 12:24:14 GMT" ] }, "StatusCode": 200 @@ -2872,10 +2872,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2887,16 +2887,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14947" ], "x-ms-request-id": [ - "10d2f816-cf88-4649-a31d-9593848eba70" + "e8e64dc5-cbb5-456f-918f-b60dfd7aa6eb" ], "x-ms-correlation-request-id": [ - "10d2f816-cf88-4649-a31d-9593848eba70" + "e8e64dc5-cbb5-456f-918f-b60dfd7aa6eb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084048Z:10d2f816-cf88-4649-a31d-9593848eba70" + "NORTHEUROPE:20151022T122418Z:e8e64dc5-cbb5-456f-918f-b60dfd7aa6eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2905,7 +2905,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:47 GMT" + "Thu, 22 Oct 2015 12:24:17 GMT" ] }, "StatusCode": 200 @@ -2920,10 +2920,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,16 +2935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14945" ], "x-ms-request-id": [ - "b8a6642f-08b2-45b5-9214-063cee663272" + "e06adab0-7c42-4c9a-b1a4-63d92a406f61" ], "x-ms-correlation-request-id": [ - "b8a6642f-08b2-45b5-9214-063cee663272" + "e06adab0-7c42-4c9a-b1a4-63d92a406f61" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084052Z:b8a6642f-08b2-45b5-9214-063cee663272" + "NORTHEUROPE:20151022T122421Z:e06adab0-7c42-4c9a-b1a4-63d92a406f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,7 +2953,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:51 GMT" + "Thu, 22 Oct 2015 12:24:21 GMT" ] }, "StatusCode": 200 @@ -2968,10 +2968,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,16 +2983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14943" ], "x-ms-request-id": [ - "5c1dc01e-69d8-47d6-a2c1-662b2c98a624" + "08a313eb-c9ef-4581-95cb-e54e587dd1ed" ], "x-ms-correlation-request-id": [ - "5c1dc01e-69d8-47d6-a2c1-662b2c98a624" + "08a313eb-c9ef-4581-95cb-e54e587dd1ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084055Z:5c1dc01e-69d8-47d6-a2c1-662b2c98a624" + "NORTHEUROPE:20151022T122425Z:08a313eb-c9ef-4581-95cb-e54e587dd1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,7 +3001,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:55 GMT" + "Thu, 22 Oct 2015 12:24:25 GMT" ] }, "StatusCode": 200 @@ -3016,10 +3016,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3031,16 +3031,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14941" ], "x-ms-request-id": [ - "dc1e49b8-b49f-4dea-9671-6e4518d1ac45" + "ad8c06e1-3af7-41d9-ad38-2b58692c6ab3" ], "x-ms-correlation-request-id": [ - "dc1e49b8-b49f-4dea-9671-6e4518d1ac45" + "ad8c06e1-3af7-41d9-ad38-2b58692c6ab3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084100Z:dc1e49b8-b49f-4dea-9671-6e4518d1ac45" + "NORTHEUROPE:20151022T122429Z:ad8c06e1-3af7-41d9-ad38-2b58692c6ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,7 +3049,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:40:59 GMT" + "Thu, 22 Oct 2015 12:24:28 GMT" ] }, "StatusCode": 200 @@ -3064,10 +3064,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3079,16 +3079,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14939" ], "x-ms-request-id": [ - "90d82520-f6cd-4a81-9fc8-eafcd31e08e3" + "a33ca6bf-ec47-494f-8198-a5c4635b20b6" ], "x-ms-correlation-request-id": [ - "90d82520-f6cd-4a81-9fc8-eafcd31e08e3" + "a33ca6bf-ec47-494f-8198-a5c4635b20b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084104Z:90d82520-f6cd-4a81-9fc8-eafcd31e08e3" + "NORTHEUROPE:20151022T122432Z:a33ca6bf-ec47-494f-8198-a5c4635b20b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,7 +3097,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:03 GMT" + "Thu, 22 Oct 2015 12:24:32 GMT" ] }, "StatusCode": 200 @@ -3112,10 +3112,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3127,16 +3127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14937" ], "x-ms-request-id": [ - "a05d25d8-a4ca-4428-b203-44b01dba2c1c" + "f5c46bbb-6361-4e31-8492-642cb8538437" ], "x-ms-correlation-request-id": [ - "a05d25d8-a4ca-4428-b203-44b01dba2c1c" + "f5c46bbb-6361-4e31-8492-642cb8538437" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084107Z:a05d25d8-a4ca-4428-b203-44b01dba2c1c" + "NORTHEUROPE:20151022T122436Z:f5c46bbb-6361-4e31-8492-642cb8538437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3145,7 +3145,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:07 GMT" + "Thu, 22 Oct 2015 12:24:36 GMT" ] }, "StatusCode": 200 @@ -3160,10 +3160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3175,16 +3175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14935" ], "x-ms-request-id": [ - "7dad82c1-dee3-4245-8ab0-c19b2ee69192" + "e407b2e2-6bb3-4887-9355-b40e7a3e0ca6" ], "x-ms-correlation-request-id": [ - "7dad82c1-dee3-4245-8ab0-c19b2ee69192" + "e407b2e2-6bb3-4887-9355-b40e7a3e0ca6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084111Z:7dad82c1-dee3-4245-8ab0-c19b2ee69192" + "NORTHEUROPE:20151022T122440Z:e407b2e2-6bb3-4887-9355-b40e7a3e0ca6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3193,7 +3193,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:10 GMT" + "Thu, 22 Oct 2015 12:24:40 GMT" ] }, "StatusCode": 200 @@ -3208,10 +3208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3223,16 +3223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14932" ], "x-ms-request-id": [ - "d86d5cec-6ea2-4424-b59c-860c933a1c92" + "260936b5-41ce-4205-98f2-8dc7b323bcfb" ], "x-ms-correlation-request-id": [ - "d86d5cec-6ea2-4424-b59c-860c933a1c92" + "260936b5-41ce-4205-98f2-8dc7b323bcfb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084115Z:d86d5cec-6ea2-4424-b59c-860c933a1c92" + "NORTHEUROPE:20151022T122444Z:260936b5-41ce-4205-98f2-8dc7b323bcfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,7 +3241,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:14 GMT" + "Thu, 22 Oct 2015 12:24:43 GMT" ] }, "StatusCode": 200 @@ -3256,10 +3256,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3271,16 +3271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14930" ], "x-ms-request-id": [ - "5dd0d5b8-bbfa-4eb2-ba5b-5a1c6b47b2bc" + "35ace195-b3ba-42d5-866c-eda45ecfc5be" ], "x-ms-correlation-request-id": [ - "5dd0d5b8-bbfa-4eb2-ba5b-5a1c6b47b2bc" + "35ace195-b3ba-42d5-866c-eda45ecfc5be" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084119Z:5dd0d5b8-bbfa-4eb2-ba5b-5a1c6b47b2bc" + "NORTHEUROPE:20151022T122448Z:35ace195-b3ba-42d5-866c-eda45ecfc5be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3289,7 +3289,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:19 GMT" + "Thu, 22 Oct 2015 12:24:48 GMT" ] }, "StatusCode": 200 @@ -3304,10 +3304,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3319,16 +3319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14928" ], "x-ms-request-id": [ - "23178ddc-a600-4e81-b5c5-f25e7ee4ffa8" + "1026da49-56db-4e34-bd99-3836d98789a5" ], "x-ms-correlation-request-id": [ - "23178ddc-a600-4e81-b5c5-f25e7ee4ffa8" + "1026da49-56db-4e34-bd99-3836d98789a5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084123Z:23178ddc-a600-4e81-b5c5-f25e7ee4ffa8" + "NORTHEUROPE:20151022T122452Z:1026da49-56db-4e34-bd99-3836d98789a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3337,7 +3337,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:23 GMT" + "Thu, 22 Oct 2015 12:24:52 GMT" ] }, "StatusCode": 200 @@ -3352,10 +3352,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3367,16 +3367,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14926" ], "x-ms-request-id": [ - "53a47a17-abdd-4e9f-b7d9-ed8dc0133a02" + "d3520bb3-06a5-4351-832d-611eac1cbee3" ], "x-ms-correlation-request-id": [ - "53a47a17-abdd-4e9f-b7d9-ed8dc0133a02" + "d3520bb3-06a5-4351-832d-611eac1cbee3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084127Z:53a47a17-abdd-4e9f-b7d9-ed8dc0133a02" + "NORTHEUROPE:20151022T122456Z:d3520bb3-06a5-4351-832d-611eac1cbee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3385,7 +3385,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:26 GMT" + "Thu, 22 Oct 2015 12:24:55 GMT" ] }, "StatusCode": 200 @@ -3400,10 +3400,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3415,16 +3415,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14924" ], "x-ms-request-id": [ - "846bab96-d8b2-4337-b140-630d8b3b5cc2" + "d2a3ed60-78b2-4fd8-a2be-d4d6575f057e" ], "x-ms-correlation-request-id": [ - "846bab96-d8b2-4337-b140-630d8b3b5cc2" + "d2a3ed60-78b2-4fd8-a2be-d4d6575f057e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084131Z:846bab96-d8b2-4337-b140-630d8b3b5cc2" + "NORTHEUROPE:20151022T122500Z:d2a3ed60-78b2-4fd8-a2be-d4d6575f057e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,7 +3433,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:30 GMT" + "Thu, 22 Oct 2015 12:24:59 GMT" ] }, "StatusCode": 200 @@ -3448,10 +3448,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3463,16 +3463,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14922" ], "x-ms-request-id": [ - "1b2565b6-0ce8-4030-b1d9-e7ef1b75551b" + "de0b883d-2282-4df9-8a5f-ac65f5e1b693" ], "x-ms-correlation-request-id": [ - "1b2565b6-0ce8-4030-b1d9-e7ef1b75551b" + "de0b883d-2282-4df9-8a5f-ac65f5e1b693" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084135Z:1b2565b6-0ce8-4030-b1d9-e7ef1b75551b" + "NORTHEUROPE:20151022T122504Z:de0b883d-2282-4df9-8a5f-ac65f5e1b693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,7 +3481,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:34 GMT" + "Thu, 22 Oct 2015 12:25:03 GMT" ] }, "StatusCode": 200 @@ -3496,10 +3496,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3511,16 +3511,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14920" ], "x-ms-request-id": [ - "e5d2cbee-33d5-408c-9ec9-9819093441a4" + "248559de-227c-4a3f-8edc-2f453ce5461b" ], "x-ms-correlation-request-id": [ - "e5d2cbee-33d5-408c-9ec9-9819093441a4" + "248559de-227c-4a3f-8edc-2f453ce5461b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084138Z:e5d2cbee-33d5-408c-9ec9-9819093441a4" + "NORTHEUROPE:20151022T122508Z:248559de-227c-4a3f-8edc-2f453ce5461b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3529,7 +3529,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:38 GMT" + "Thu, 22 Oct 2015 12:25:07 GMT" ] }, "StatusCode": 200 @@ -3544,10 +3544,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3559,16 +3559,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14918" ], "x-ms-request-id": [ - "3cfbd3d9-228a-4827-a498-8fa8aef30926" + "281d8351-a43f-4e18-bb9b-1c83c6f0b2bb" ], "x-ms-correlation-request-id": [ - "3cfbd3d9-228a-4827-a498-8fa8aef30926" + "281d8351-a43f-4e18-bb9b-1c83c6f0b2bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084142Z:3cfbd3d9-228a-4827-a498-8fa8aef30926" + "NORTHEUROPE:20151022T122512Z:281d8351-a43f-4e18-bb9b-1c83c6f0b2bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3577,7 +3577,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:42 GMT" + "Thu, 22 Oct 2015 12:25:11 GMT" ] }, "StatusCode": 200 @@ -3592,10 +3592,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3607,16 +3607,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14916" ], "x-ms-request-id": [ - "c8e7a66d-092f-4206-9fe2-67c2d25b28af" + "558be3ca-7f4a-4613-8235-1cd379fa4609" ], "x-ms-correlation-request-id": [ - "c8e7a66d-092f-4206-9fe2-67c2d25b28af" + "558be3ca-7f4a-4613-8235-1cd379fa4609" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084146Z:c8e7a66d-092f-4206-9fe2-67c2d25b28af" + "NORTHEUROPE:20151022T122516Z:558be3ca-7f4a-4613-8235-1cd379fa4609" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3625,7 +3625,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:46 GMT" + "Thu, 22 Oct 2015 12:25:15 GMT" ] }, "StatusCode": 200 @@ -3640,10 +3640,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3655,16 +3655,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14914" ], "x-ms-request-id": [ - "12baa8be-90f8-4aa9-9bc8-1d6119704d02" + "2684069d-c02b-4e82-9278-902e0c09895f" ], "x-ms-correlation-request-id": [ - "12baa8be-90f8-4aa9-9bc8-1d6119704d02" + "2684069d-c02b-4e82-9278-902e0c09895f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084150Z:12baa8be-90f8-4aa9-9bc8-1d6119704d02" + "NORTHEUROPE:20151022T122520Z:2684069d-c02b-4e82-9278-902e0c09895f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3673,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:50 GMT" + "Thu, 22 Oct 2015 12:25:19 GMT" ] }, "StatusCode": 200 @@ -3688,10 +3688,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3703,16 +3703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14912" ], "x-ms-request-id": [ - "357afec4-6011-4165-a6ca-012e24bff515" + "8b3fd49e-12ea-4440-be48-59d40d4ad54e" ], "x-ms-correlation-request-id": [ - "357afec4-6011-4165-a6ca-012e24bff515" + "8b3fd49e-12ea-4440-be48-59d40d4ad54e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084154Z:357afec4-6011-4165-a6ca-012e24bff515" + "NORTHEUROPE:20151022T122524Z:8b3fd49e-12ea-4440-be48-59d40d4ad54e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3721,7 +3721,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:54 GMT" + "Thu, 22 Oct 2015 12:25:23 GMT" ] }, "StatusCode": 200 @@ -3736,10 +3736,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3751,16 +3751,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "14909" ], "x-ms-request-id": [ - "a7c750e6-f40d-4326-aba6-b6c41a5a9ae1" + "355518cc-295b-4033-b679-98ba9f27cb12" ], "x-ms-correlation-request-id": [ - "a7c750e6-f40d-4326-aba6-b6c41a5a9ae1" + "355518cc-295b-4033-b679-98ba9f27cb12" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084158Z:a7c750e6-f40d-4326-aba6-b6c41a5a9ae1" + "NORTHEUROPE:20151022T122527Z:355518cc-295b-4033-b679-98ba9f27cb12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,7 +3769,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:41:57 GMT" + "Thu, 22 Oct 2015 12:25:27 GMT" ] }, "StatusCode": 200 @@ -3784,10 +3784,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3799,16 +3799,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" + "14907" ], "x-ms-request-id": [ - "681dbe64-a619-4386-948d-4deed3b5ffb7" + "7b381926-6e4d-4490-a2fa-d90d4512164d" ], "x-ms-correlation-request-id": [ - "681dbe64-a619-4386-948d-4deed3b5ffb7" + "7b381926-6e4d-4490-a2fa-d90d4512164d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084202Z:681dbe64-a619-4386-948d-4deed3b5ffb7" + "NORTHEUROPE:20151022T122531Z:7b381926-6e4d-4490-a2fa-d90d4512164d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3817,7 +3817,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:01 GMT" + "Thu, 22 Oct 2015 12:25:31 GMT" ] }, "StatusCode": 200 @@ -3832,10 +3832,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,16 +3847,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14905" ], "x-ms-request-id": [ - "3664ee8c-87a1-4682-97d1-50498c0ea204" + "8463b87e-28b8-4fa6-bf71-1f3db7cc42e5" ], "x-ms-correlation-request-id": [ - "3664ee8c-87a1-4682-97d1-50498c0ea204" + "8463b87e-28b8-4fa6-bf71-1f3db7cc42e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084206Z:3664ee8c-87a1-4682-97d1-50498c0ea204" + "NORTHEUROPE:20151022T122535Z:8463b87e-28b8-4fa6-bf71-1f3db7cc42e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,7 +3865,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:05 GMT" + "Thu, 22 Oct 2015 12:25:34 GMT" ] }, "StatusCode": 200 @@ -3880,10 +3880,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3895,16 +3895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14903" ], "x-ms-request-id": [ - "acd3c0a8-9422-45fc-83a2-1f006f05ce08" + "5d917c8b-bb2e-4fcb-92c1-d7b6c8aabadb" ], "x-ms-correlation-request-id": [ - "acd3c0a8-9422-45fc-83a2-1f006f05ce08" + "5d917c8b-bb2e-4fcb-92c1-d7b6c8aabadb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084210Z:acd3c0a8-9422-45fc-83a2-1f006f05ce08" + "NORTHEUROPE:20151022T122540Z:5d917c8b-bb2e-4fcb-92c1-d7b6c8aabadb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,7 +3913,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:10 GMT" + "Thu, 22 Oct 2015 12:25:39 GMT" ] }, "StatusCode": 200 @@ -3928,10 +3928,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3943,16 +3943,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14693" + "14901" ], "x-ms-request-id": [ - "72fd880f-52f6-4765-b5da-7c131f5f3c35" + "3efbcfd8-7056-46fb-97e5-a8347482bdd1" ], "x-ms-correlation-request-id": [ - "72fd880f-52f6-4765-b5da-7c131f5f3c35" + "3efbcfd8-7056-46fb-97e5-a8347482bdd1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084214Z:72fd880f-52f6-4765-b5da-7c131f5f3c35" + "NORTHEUROPE:20151022T122544Z:3efbcfd8-7056-46fb-97e5-a8347482bdd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3961,7 +3961,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:14 GMT" + "Thu, 22 Oct 2015 12:25:44 GMT" ] }, "StatusCode": 200 @@ -3976,10 +3976,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3991,16 +3991,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14691" + "14899" ], "x-ms-request-id": [ - "50900eef-f95d-45ae-a39c-a9be225de246" + "df5f8f61-3142-4f4f-9d22-70c00a7a123a" ], "x-ms-correlation-request-id": [ - "50900eef-f95d-45ae-a39c-a9be225de246" + "df5f8f61-3142-4f4f-9d22-70c00a7a123a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084218Z:50900eef-f95d-45ae-a39c-a9be225de246" + "NORTHEUROPE:20151022T122548Z:df5f8f61-3142-4f4f-9d22-70c00a7a123a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4009,7 +4009,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:18 GMT" + "Thu, 22 Oct 2015 12:25:47 GMT" ] }, "StatusCode": 200 @@ -4024,10 +4024,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:23:23.8619232Z\",\r\n \"duration\": \"PT3.9873765S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4039,16 +4039,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" + "14897" ], "x-ms-request-id": [ - "c4040de4-2f51-4965-8f7d-c539f3dd8635" + "9b535920-53dd-4968-a1b9-e895b9af897f" ], "x-ms-correlation-request-id": [ - "c4040de4-2f51-4965-8f7d-c539f3dd8635" + "9b535920-53dd-4968-a1b9-e895b9af897f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084222Z:c4040de4-2f51-4965-8f7d-c539f3dd8635" + "NORTHEUROPE:20151022T122552Z:9b535920-53dd-4968-a1b9-e895b9af897f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4057,7 +4057,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:22 GMT" + "Thu, 22 Oct 2015 12:25:52 GMT" ] }, "StatusCode": 200 @@ -4072,10 +4072,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:25:54.1728885Z\",\r\n \"duration\": \"PT2M34.2983418S\",\r\n \"correlationId\": \"1ad4f9ae-c021-4fc0-86c3-cb396899f4d7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4087,16 +4087,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14895" ], "x-ms-request-id": [ - "c777adec-2410-4f7f-87de-62a59a516135" + "952633d3-f877-46f0-9b4b-343ccc284a22" ], "x-ms-correlation-request-id": [ - "c777adec-2410-4f7f-87de-62a59a516135" + "952633d3-f877-46f0-9b4b-343ccc284a22" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084226Z:c777adec-2410-4f7f-87de-62a59a516135" + "NORTHEUROPE:20151022T122556Z:952633d3-f877-46f0-9b4b-343ccc284a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4105,206 +4105,392 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:25 GMT" + "Thu, 22 Oct 2015 12:25:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "55038563-9cb7-4c2f-8c94-d4f5351965f5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "525" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "47c90f9e-ee57-42e6-8624-9100d9ec7a79" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "31dd2f8e-84f8-47f5-ab0c-1ef68f6fb34a" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" ], "x-ms-correlation-request-id": [ - "31dd2f8e-84f8-47f5-ab0c-1ef68f6fb34a" + "9eea5cfa-7eb9-4529-8d18-90a65a225790" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084230Z:31dd2f8e-84f8-47f5-ab0c-1ef68f6fb34a" + "NORTHEUROPE:20151022T122602Z:9eea5cfa-7eb9-4529-8d18-90a65a225790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:29 GMT" + "Thu, 22 Oct 2015 12:26:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "55038563-9cb7-4c2f-8c94-d4f5351965f5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "525" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "44f1eccf-cc5f-4995-a4d1-30b5e3f63f70" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" + "14792" + ], + "x-ms-correlation-request-id": [ + "89f5ddb3-42d8-4b69-b21e-6e3f035845fd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122607Z:89f5ddb3-42d8-4b69-b21e-6e3f035845fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:26:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "977abc9e-2585-40cd-9144-88905f6baaf1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3e64cf24-d611-41c1-a939-e1bfa11b18fa" + "8189450e-fae9-439d-9c22-878e3d73b247" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" ], "x-ms-correlation-request-id": [ - "3e64cf24-d611-41c1-a939-e1bfa11b18fa" + "2dfd5e93-3405-4f7d-a133-b78bd8fafb51" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084234Z:3e64cf24-d611-41c1-a939-e1bfa11b18fa" + "NORTHEUROPE:20151022T122614Z:2dfd5e93-3405-4f7d-a133-b78bd8fafb51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:33 GMT" + "Thu, 22 Oct 2015 12:26:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "977abc9e-2585-40cd-9144-88905f6baaf1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:40:04.448729Z\",\r\n \"duration\": \"PT8.8923974S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "525" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "a6ea15a1-d8a3-4693-b336-9f15f191e5e6" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" + "14788" + ], + "x-ms-correlation-request-id": [ + "e83983d3-5f2f-4f77-9523-56f79b7a1cd4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122615Z:e83983d3-5f2f-4f77-9523-56f79b7a1cd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:26:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5117104d-e51c-4812-adbb-e323cd27c33f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "de4bee47-709c-43a1-8542-3e799ddd0487" + "232c1512-4f9f-4a95-a072-517623dde3c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" ], "x-ms-correlation-request-id": [ - "de4bee47-709c-43a1-8542-3e799ddd0487" + "cf9bf2ab-bed9-4213-8336-01680d2cc700" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084238Z:de4bee47-709c-43a1-8542-3e799ddd0487" + "NORTHEUROPE:20151022T122629Z:cf9bf2ab-bed9-4213-8336-01680d2cc700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:37 GMT" + "Thu, 22 Oct 2015 12:26:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5117104d-e51c-4812-adbb-e323cd27c33f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40225\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:42:39.11181Z\",\r\n \"duration\": \"PT2M43.5554784S\",\r\n \"correlationId\": \"8e25ab1d-ca32-4bc3-b335-01544f6307c7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40225/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40225/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2566" + "525" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "ba608dd1-c8d9-4a19-9ee5-71d527b2cd3e" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" + "14780" + ], + "x-ms-correlation-request-id": [ + "f995c586-a746-42cb-8bf7-8c1dd406a6bf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122629Z:f995c586-a746-42cb-8bf7-8c1dd406a6bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:26:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9746f536-ecbd-4ea9-8683-384793408f7f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "665d9a71-1a9d-4c40-9279-326f66e7d69f" + "0af0e77c-eed5-4dcb-b153-c5df26f5d8d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" ], "x-ms-correlation-request-id": [ - "665d9a71-1a9d-4c40-9279-326f66e7d69f" + "89a08400-5ad3-40ac-bf2f-087a9c0bf8b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084241Z:665d9a71-1a9d-4c40-9279-326f66e7d69f" + "NORTHEUROPE:20151022T122642Z:89a08400-5ad3-40ac-bf2f-087a9c0bf8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:41 GMT" + "Thu, 22 Oct 2015 12:26:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4312,19 +4498,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "494ee289-7742-4f42-8c25-690a81c65123" + "9746f536-ecbd-4ea9-8683-384793408f7f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "452" + "525" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9d5c0b9a-620e-4dca-aad9-05c4491d403f" + "a5ac1000-80cc-438f-b995-9c99c45a0cdf" ], "X-Content-Type-Options": [ "nosniff" @@ -4332,23 +4518,77 @@ "DataServiceVersion": [ "3.0;" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "713783e9-6af5-4bc0-80ac-7bf03dd303d8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122642Z:713783e9-6af5-4bc0-80ac-7bf03dd303d8" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:26:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e225d973-cfb5-4419-b852-4220ca189b07" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225\",\r\n \"name\": \"sql-dm-cmdlet-server40225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server40225.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "717c7d67-d3d3-4c76-8b71-135d67726a82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "14768" ], "x-ms-correlation-request-id": [ - "bf3e448b-477f-4c1f-b5c8-82da690e7ae8" + "dae0646c-4b53-405b-b430-d00e5453407a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084251Z:bf3e448b-477f-4c1f-b5c8-82da690e7ae8" + "NORTHEUROPE:20151022T122657Z:dae0646c-4b53-405b-b430-d00e5453407a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:50 GMT" + "Thu, 22 Oct 2015 12:26:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4366,19 +4606,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2455cb42-bf55-4be9-ba3b-37a9004e389e" + "55038563-9cb7-4c2f-8c94-d4f5351965f5" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "452" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3419434b-436c-4018-8a37-70f07adb19b4" + "d64e3851-aac8-4229-90ac-4ae6292ea6f4" ], "X-Content-Type-Options": [ "nosniff" @@ -4390,19 +4630,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14793" ], "x-ms-correlation-request-id": [ - "e8f758c2-5988-4bd8-81ab-2641a6bb7c58" + "7e55ac66-0603-4609-975d-27b114830e2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084259Z:e8f758c2-5988-4bd8-81ab-2641a6bb7c58" + "NORTHEUROPE:20151022T122606Z:7e55ac66-0603-4609-975d-27b114830e2b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:58 GMT" + "Thu, 22 Oct 2015 12:26:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4420,7 +4660,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "14ab1095-e87d-4a56-8fb5-72b0f6cc9139" + "977abc9e-2585-40cd-9144-88905f6baaf1" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", @@ -4432,7 +4672,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a3112cf2-2ee0-4592-b53c-87b765586bf5" + "2a50928c-31c9-4c97-a0b5-ee099f69275a" ], "X-Content-Type-Options": [ "nosniff" @@ -4444,19 +4684,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "14787" ], "x-ms-correlation-request-id": [ - "1d404d04-1186-4a1f-bd63-dddcbec89463" + "4688cdb9-1802-4c8f-b840-b01b0c6b85fc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084314Z:1d404d04-1186-4a1f-bd63-dddcbec89463" + "NORTHEUROPE:20151022T122617Z:4688cdb9-1802-4c8f-b840-b01b0c6b85fc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:14 GMT" + "Thu, 22 Oct 2015 12:26:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4474,7 +4714,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "019a5f91-e911-418a-bb3c-bc247fcc66f0" + "5117104d-e51c-4812-adbb-e323cd27c33f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", @@ -4486,7 +4726,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9c142121-68d8-4ca3-add1-60b09e1650d2" + "e42ed9aa-ba10-409d-9e2f-8eccb5845f69" ], "X-Content-Type-Options": [ "nosniff" @@ -4498,19 +4738,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "14779" ], "x-ms-correlation-request-id": [ - "08ef8c09-8de8-4075-9e8e-ce21e984b2b0" + "69e9767a-4fa8-4d74-82bf-dad989ab4bd4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084325Z:08ef8c09-8de8-4075-9e8e-ce21e984b2b0" + "NORTHEUROPE:20151022T122632Z:69e9767a-4fa8-4d74-82bf-dad989ab4bd4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:25 GMT" + "Thu, 22 Oct 2015 12:26:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4521,59 +4761,50 @@ { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "494ee289-7742-4f42-8c25-690a81c65123" + "9746f536-ecbd-4ea9-8683-384793408f7f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "456" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "09e82762-658f-400b-b316-38943413b63b" + "bc7f2c38-1f6d-4230-b2e7-d06415a9897e" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" - ], "DataServiceVersion": [ "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" ], "x-ms-correlation-request-id": [ - "9ad262a8-f3bb-434d-987e-374c76fc7f7d" + "8a19454e-4a1a-48d5-8012-7ab83611c45a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084254Z:9ad262a8-f3bb-434d-987e-374c76fc7f7d" + "NORTHEUROPE:20151022T122644Z:8a19454e-4a1a-48d5-8012-7ab83611c45a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:53 GMT" + "Thu, 22 Oct 2015 12:26:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4582,52 +4813,61 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ba6af6bc-41c3-4a34-aa14-a69c97905cde" + "55038563-9cb7-4c2f-8c94-d4f5351965f5" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "441" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c104a78e-6a1a-4698-8cb1-facdb5837e93" + "d10c6558-a9c5-410a-8632-032df7833265" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14674" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "bcdf8486-4355-4a1e-b424-cdb0039556da" + "0c545bb5-cde7-4e57-aeaa-968c0dc24328" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084256Z:bcdf8486-4355-4a1e-b424-cdb0039556da" + "NORTHEUROPE:20151022T122610Z:0c545bb5-cde7-4e57-aeaa-968c0dc24328" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:55 GMT" + "Thu, 22 Oct 2015 12:26:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4645,7 +4885,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2455cb42-bf55-4be9-ba3b-37a9004e389e" + "f1be5c73-c36a-4fe5-b06f-b45579efeba9" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4657,7 +4897,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6c146fd5-a0c4-481a-9996-62678ed87cd5" + "2d4d2e74-1b3e-4e27-a145-46987e8e8a90" ], "X-Content-Type-Options": [ "nosniff" @@ -4669,19 +4909,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" + "14791" ], "x-ms-correlation-request-id": [ - "e5938b9e-8fab-477b-b38b-80f392bcd43e" + "91e2fe79-4b78-47d4-b873-cb7bfdfff030" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084257Z:e5938b9e-8fab-477b-b38b-80f392bcd43e" + "NORTHEUROPE:20151022T122612Z:91e2fe79-4b78-47d4-b873-cb7bfdfff030" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:42:57 GMT" + "Thu, 22 Oct 2015 12:26:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4699,19 +4939,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "31080fdd-3c73-4ceb-9b12-aaf8360a5e30" + "977abc9e-2585-40cd-9144-88905f6baaf1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "12" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3d3d26eb-4a61-4ddf-8083-4f68c214e43f" + "1c75524c-fabe-4239-aca0-31160da61a30" ], "X-Content-Type-Options": [ "nosniff" @@ -4723,19 +4963,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "14790" ], "x-ms-correlation-request-id": [ - "c73f24e5-fe36-4150-ba7c-96931b264adb" + "8900f55b-a862-4c03-8477-5941cd9a6ffd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084305Z:c73f24e5-fe36-4150-ba7c-96931b264adb" + "NORTHEUROPE:20151022T122614Z:8900f55b-a862-4c03-8477-5941cd9a6ffd" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:04 GMT" + "Thu, 22 Oct 2015 12:26:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4753,19 +4993,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "59004e30-148f-4acc-9cf3-8905d8143ac3" + "2144076f-cc69-48ed-986d-5bbf08a7655f" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fd668746-ef52-44f4-b746-350216ffe05f" + "36b1095d-5414-4511-9e4d-1d4472e2e645" ], "X-Content-Type-Options": [ "nosniff" @@ -4777,19 +5017,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14786" ], "x-ms-correlation-request-id": [ - "678d3254-d2ef-4b70-9e04-e7c21e164b64" + "8090240e-f926-4028-870c-0baaeb0c7e03" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084308Z:678d3254-d2ef-4b70-9e04-e7c21e164b64" + "NORTHEUROPE:20151022T122621Z:8090240e-f926-4028-870c-0baaeb0c7e03" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:07 GMT" + "Thu, 22 Oct 2015 12:26:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4807,19 +5047,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "14ab1095-e87d-4a56-8fb5-72b0f6cc9139" + "1546e9ec-0967-402d-8404-cdcf386ddfbc" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2298b96e-d755-43e5-9bb4-058e843e8670" + "ab62136c-727d-42db-9f79-2da23e33f75e" ], "X-Content-Type-Options": [ "nosniff" @@ -4831,19 +5071,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" + "14785" ], "x-ms-correlation-request-id": [ - "124b5ced-a467-467a-a0d4-eca95b2be9ef" + "91ab6ea8-e363-443f-8389-928a77680cce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084311Z:124b5ced-a467-467a-a0d4-eca95b2be9ef" + "NORTHEUROPE:20151022T122626Z:91ab6ea8-e363-443f-8389-928a77680cce" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:11 GMT" + "Thu, 22 Oct 2015 12:26:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4861,19 +5101,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bd2387b5-53d8-4cc5-b7c5-1ca896953b5d" + "5117104d-e51c-4812-adbb-e323cd27c33f" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "604" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5df6f29e-9681-417c-91a8-1a154de37034" + "49adee45-1ba5-4b48-b21c-a09312ad73fd" ], "X-Content-Type-Options": [ "nosniff" @@ -4885,19 +5125,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14662" + "14783" ], "x-ms-correlation-request-id": [ - "b435a29d-669f-4a90-b36f-8ac42009cb1f" + "033b18b1-1c84-49b9-9b97-9788d3fb2a1d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084320Z:b435a29d-669f-4a90-b36f-8ac42009cb1f" + "NORTHEUROPE:20151022T122629Z:033b18b1-1c84-49b9-9b97-9788d3fb2a1d" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:19 GMT" + "Thu, 22 Oct 2015 12:26:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4915,19 +5155,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "019a5f91-e911-418a-bb3c-bc247fcc66f0" + "29753c6f-0ae9-4c0f-bc88-02b728a723f2" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "604" + "617" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ea2fe0b4-3f1f-472e-81e6-d5fa1385a6b0" + "95396517-3745-4db3-a67a-a76034b9c201" ], "X-Content-Type-Options": [ "nosniff" @@ -4939,19 +5179,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "14777" ], "x-ms-correlation-request-id": [ - "3e41757a-1435-4e0d-bdf8-b3890a27254f" + "88c4b370-b66e-4519-b436-ac8c9a5eb926" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084322Z:3e41757a-1435-4e0d-bdf8-b3890a27254f" + "NORTHEUROPE:20151022T122639Z:88c4b370-b66e-4519-b436-ac8c9a5eb926" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:22 GMT" + "Thu, 22 Oct 2015 12:26:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4969,19 +5209,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "3f5cae13-45e5-48db-ac82-98289a4a21b8" + "9746f536-ecbd-4ea9-8683-384793408f7f" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "617" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e7aa9e53-ea9f-4e59-970e-6eaf77ce6123" + "fd8faf6a-7a8d-4b56-be84-07530ee6ff4f" ], "X-Content-Type-Options": [ "nosniff" @@ -4993,19 +5233,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" + "14776" ], "x-ms-correlation-request-id": [ - "10e97818-e8cf-4680-a78c-59ddb85c5f99" + "c455365c-e6f6-4b81-b2f3-70379cd54a2f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084331Z:10e97818-e8cf-4680-a78c-59ddb85c5f99" + "NORTHEUROPE:20151022T122642Z:c455365c-e6f6-4b81-b2f3-70379cd54a2f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:31 GMT" + "Thu, 22 Oct 2015 12:26:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5023,19 +5263,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c5e16200-4e80-42dd-a2e9-9ce88071d099" + "77ab9336-390f-4f7f-a20f-95388c9ca466" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8033bdbc-d39b-48e0-9613-5f290cb152c6" + "6f23e95b-afc4-4ccd-a44e-af9abcea67fc" ], "X-Content-Type-Options": [ "nosniff" @@ -5047,19 +5287,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14657" + "14771" ], "x-ms-correlation-request-id": [ - "0d2ea3e6-19b6-455c-b61b-7458a140e0b7" + "c5930bc6-af1b-4aed-bc17-bf1881445b01" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084334Z:0d2ea3e6-19b6-455c-b61b-7458a140e0b7" + "NORTHEUROPE:20151022T122651Z:c5930bc6-af1b-4aed-bc17-bf1881445b01" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:34 GMT" + "Thu, 22 Oct 2015 12:26:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5077,19 +5317,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1eafc43d-8032-47e5-a911-25efba186d21" + "9344eeaa-c22b-41c5-be99-4f03a4b7767d" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "606" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "249f70c9-78e5-4275-a9a5-40f645e870fb" + "580d8815-4fbe-4a41-9268-1fa703fd3c5c" ], "X-Content-Type-Options": [ "nosniff" @@ -5101,19 +5341,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "14770" ], "x-ms-correlation-request-id": [ - "17760937-54a3-48a6-a18f-1dd40abce8bb" + "4fd4f84e-82aa-4180-9217-e6730a1314c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084337Z:17760937-54a3-48a6-a18f-1dd40abce8bb" + "NORTHEUROPE:20151022T122654Z:4fd4f84e-82aa-4180-9217-e6730a1314c6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:37 GMT" + "Thu, 22 Oct 2015 12:26:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5131,19 +5371,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5ca51c2b-199f-4625-80aa-3d1a250e0803" + "e225d973-cfb5-4419-b852-4220ca189b07" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "619" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "67558bb8-4fd2-4c99-9e1e-087f26389513" + "51e4f145-e9f6-4f18-80ca-422f0156ebb0" ], "X-Content-Type-Options": [ "nosniff" @@ -5155,19 +5395,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14655" + "14769" ], "x-ms-correlation-request-id": [ - "b7be9e93-8ee3-4ed2-bbe6-9dc435ff7398" + "ae479ea0-34b9-4999-b304-65430b23d369" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084345Z:b7be9e93-8ee3-4ed2-bbe6-9dc435ff7398" + "NORTHEUROPE:20151022T122657Z:ae479ea0-34b9-4999-b304-65430b23d369" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:44 GMT" + "Thu, 22 Oct 2015 12:26:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5185,7 +5425,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ba4fbe0b-4c97-41dd-b0c4-21d36165ef42" + "a26a9aab-1926-4bd4-a619-80bd76f6ccb6" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -5197,7 +5437,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f39e827d-1114-4d68-9bcf-e59052c5af5b" + "f52740c0-db97-4821-9366-b9fc46bd13b5" ], "X-Content-Type-Options": [ "nosniff" @@ -5209,19 +5449,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" + "14765" ], "x-ms-correlation-request-id": [ - "2298ad12-917d-4b16-ac5c-60b693892651" + "ebb6ded6-022d-404a-9ac1-e51da36b89e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084347Z:2298ad12-917d-4b16-ac5c-60b693892651" + "NORTHEUROPE:20151022T122707Z:ebb6ded6-022d-404a-9ac1-e51da36b89e4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:46 GMT" + "Thu, 22 Oct 2015 12:27:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5230,34 +5470,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "208" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "2455cb42-bf55-4be9-ba3b-37a9004e389e" + "977abc9e-2585-40cd-9144-88905f6baaf1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "634" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e945502b-7a28-40af-af77-062453a81341" + "457f2e8a-60e7-4e22-ac32-1b46cd7a7dd7" ], "X-Content-Type-Options": [ "nosniff" @@ -5272,19 +5512,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "31ee7c3d-0bc7-4519-be51-7243283b8b63" + "c0aec665-91f4-4597-9448-21875181fbf6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084302Z:31ee7c3d-0bc7-4519-be51-7243283b8b63" + "NORTHEUROPE:20151022T122619Z:c0aec665-91f4-4597-9448-21875181fbf6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:01 GMT" + "Thu, 22 Oct 2015 12:26:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5293,34 +5533,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Email\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Email\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "193" + "206" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "14ab1095-e87d-4a56-8fb5-72b0f6cc9139" + "5117104d-e51c-4812-adbb-e323cd27c33f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "593" + "632" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ac091f5d-bcdc-4f54-b3da-9bc15dc84df0" + "8c6bbc5a-c30a-45f0-ba5f-5ade9f112262" ], "X-Content-Type-Options": [ "nosniff" @@ -5335,19 +5575,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "522212bb-dca8-482d-84ad-8a0cd49c8703" + "aaf16862-8b63-4011-b559-5b1e5ef1795b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084317Z:522212bb-dca8-482d-84ad-8a0cd49c8703" + "NORTHEUROPE:20151022T122636Z:aaf16862-8b63-4011-b559-5b1e5ef1795b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:17 GMT" + "Thu, 22 Oct 2015 12:26:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5356,34 +5596,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "208" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "019a5f91-e911-418a-bb3c-bc247fcc66f0" + "9746f536-ecbd-4ea9-8683-384793408f7f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "634" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "227356b9-d8aa-4a46-9fc3-af18b16d1818" + "5a4e1845-b07d-4148-a53a-4b5eaab74683" ], "X-Content-Type-Options": [ "nosniff" @@ -5398,19 +5638,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "f7429893-c294-4a62-9864-17c0333d689a" + "c54adb03-bdff-49bb-8997-8f78c2a63580" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084328Z:f7429893-c294-4a62-9864-17c0333d689a" + "NORTHEUROPE:20151022T122648Z:c54adb03-bdff-49bb-8997-8f78c2a63580" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:28 GMT" + "Thu, 22 Oct 2015 12:26:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5419,34 +5659,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "196" + "209" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1eafc43d-8032-47e5-a911-25efba186d21" + "e225d973-cfb5-4419-b852-4220ca189b07" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "596" + "635" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fd966326-7e04-43a6-97fe-7fbaa5bb9009" + "81356be3-2d8a-4b4f-a261-104c3d967808" ], "X-Content-Type-Options": [ "nosniff" @@ -5461,19 +5701,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "99a5c8fe-1e54-49a0-8dff-58d6ad79b447" + "01b4432f-a053-44e6-a7c7-07011faaa773" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084340Z:99a5c8fe-1e54-49a0-8dff-58d6ad79b447" + "NORTHEUROPE:20151022T122701Z:01b4432f-a053-44e6-a7c7-07011faaa773" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:40 GMT" + "Thu, 22 Oct 2015 12:27:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5482,8 +5722,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40225/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40225/databases/sql-dm-cmdlet-db40225/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyNS9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjI1L2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5491,7 +5731,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1eafc43d-8032-47e5-a911-25efba186d21" + "e225d973-cfb5-4419-b852-4220ca189b07" ] }, "ResponseBody": "", @@ -5503,7 +5743,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "9c4c51eb-9fab-4241-b1d6-af4c3ebf93bf" + "094051be-d549-4223-bd76-066db776ffe5" ], "X-Content-Type-Options": [ "nosniff" @@ -5515,19 +5755,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "4a3e4a8a-f3c3-4002-904b-40455f8ef06d" + "b590d187-f81c-48ee-be47-fc80083e2173" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084343Z:4a3e4a8a-f3c3-4002-904b-40455f8ef06d" + "NORTHEUROPE:20151022T122705Z:b590d187-f81c-48ee-be47-fc80083e2173" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:43:42 GMT" + "Thu, 22 Oct 2015 12:27:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json index 97c71a8ea815..79d073f84b67 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14489" + "14974" ], "x-ms-request-id": [ - "351f832a-245b-49f3-b1c6-7811cc65d846" + "12000f98-17d9-497a-baca-1646f5fa96bc" ], "x-ms-correlation-request-id": [ - "351f832a-245b-49f3-b1c6-7811cc65d846" + "12000f98-17d9-497a-baca-1646f5fa96bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090604Z:351f832a-245b-49f3-b1c6-7811cc65d846" + "NORTHEUROPE:20151022T123546Z:12000f98-17d9-497a-baca-1646f5fa96bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:03 GMT" + "Thu, 22 Oct 2015 12:35:46 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "cf9ef7e5-e1b4-4f21-b3c2-1df9e00a3b4d" + "b55cf7c3-96c8-4fbb-87bb-bf7c35153945" ], "x-ms-correlation-request-id": [ - "cf9ef7e5-e1b4-4f21-b3c2-1df9e00a3b4d" + "b55cf7c3-96c8-4fbb-87bb-bf7c35153945" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090607Z:cf9ef7e5-e1b4-4f21-b3c2-1df9e00a3b4d" + "NORTHEUROPE:20151022T123551Z:b55cf7c3-96c8-4fbb-87bb-bf7c35153945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:07 GMT" + "Thu, 22 Oct 2015 12:35:50 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14488" + "14973" ], "x-ms-request-id": [ - "f8a92046-58aa-4b72-a7ec-b465f0fa1870" + "ebbeb744-ddd3-4eac-923c-52fc6cc8abba" ], "x-ms-correlation-request-id": [ - "f8a92046-58aa-4b72-a7ec-b465f0fa1870" + "ebbeb744-ddd3-4eac-923c-52fc6cc8abba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090607Z:f8a92046-58aa-4b72-a7ec-b465f0fa1870" + "NORTHEUROPE:20151022T123551Z:ebbeb744-ddd3-4eac-923c-52fc6cc8abba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:07 GMT" + "Thu, 22 Oct 2015 12:35:51 GMT" ] }, "StatusCode": 200 @@ -178,7 +178,7 @@ "no-cache" ], "x-ms-request-id": [ - "6ab7fd06-8923-4c48-a666-289dffee65f0" + "814e4a06-5188-4ea4-864d-b24910a8f87c" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14976" ], "x-ms-correlation-request-id": [ - "bacd58cc-34a5-4a1a-8046-7c4f8f927438" + "34ab3cad-7986-40a0-b901-303653a6eb11" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090608Z:bacd58cc-34a5-4a1a-8046-7c4f8f927438" + "NORTHEUROPE:20151022T123552Z:34ab3cad-7986-40a0-b901-303653a6eb11" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:07 GMT" + "Thu, 22 Oct 2015 12:35:51 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -232,10 +232,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-14T09:06:13.23128Z\",\r\n \"duration\": \"PT3.2442034S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-22T12:35:57.3530652Z\",\r\n \"duration\": \"PT3.6652712S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2301" + "2303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -247,16 +247,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "b488d135-06e5-4b6c-97b8-a5f76dc6a770" + "8ccc2953-b3a5-4347-a9dc-795c07a1a0ff" ], "x-ms-correlation-request-id": [ - "b488d135-06e5-4b6c-97b8-a5f76dc6a770" + "8ccc2953-b3a5-4347-a9dc-795c07a1a0ff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090614Z:b488d135-06e5-4b6c-97b8-a5f76dc6a770" + "NORTHEUROPE:20151022T123558Z:8ccc2953-b3a5-4347-a9dc-795c07a1a0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:14 GMT" + "Thu, 22 Oct 2015 12:35:58 GMT" ] }, "StatusCode": 201 @@ -295,16 +295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14487" + "14972" ], "x-ms-request-id": [ - "b74499bd-988e-4770-9d92-3c10648fe1e7" + "dde79533-5e1e-4b49-b3ad-7045908e9552" ], "x-ms-correlation-request-id": [ - "b74499bd-988e-4770-9d92-3c10648fe1e7" + "dde79533-5e1e-4b49-b3ad-7045908e9552" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090615Z:b74499bd-988e-4770-9d92-3c10648fe1e7" + "NORTHEUROPE:20151022T123600Z:dde79533-5e1e-4b49-b3ad-7045908e9552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,7 +313,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:15 GMT" + "Thu, 22 Oct 2015 12:35:59 GMT" ] }, "StatusCode": 200 @@ -343,16 +343,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14484" + "14970" ], "x-ms-request-id": [ - "b874bf3d-cc70-446b-83f1-bb1a9b10e405" + "a37b39a7-44f6-4b22-a9ed-a9729d9dce78" ], "x-ms-correlation-request-id": [ - "b874bf3d-cc70-446b-83f1-bb1a9b10e405" + "a37b39a7-44f6-4b22-a9ed-a9729d9dce78" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090619Z:b874bf3d-cc70-446b-83f1-bb1a9b10e405" + "NORTHEUROPE:20151022T123604Z:a37b39a7-44f6-4b22-a9ed-a9729d9dce78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,7 +361,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:19 GMT" + "Thu, 22 Oct 2015 12:36:03 GMT" ] }, "StatusCode": 200 @@ -391,16 +391,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14480" + "14968" ], "x-ms-request-id": [ - "874a82fd-a4c6-404e-b5b3-1403275e770c" + "07f13eeb-9858-4b1f-9bcd-4d8c4f96b6e5" ], "x-ms-correlation-request-id": [ - "874a82fd-a4c6-404e-b5b3-1403275e770c" + "07f13eeb-9858-4b1f-9bcd-4d8c4f96b6e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090623Z:874a82fd-a4c6-404e-b5b3-1403275e770c" + "NORTHEUROPE:20151022T123607Z:07f13eeb-9858-4b1f-9bcd-4d8c4f96b6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,7 +409,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:22 GMT" + "Thu, 22 Oct 2015 12:36:07 GMT" ] }, "StatusCode": 200 @@ -439,16 +439,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14478" + "14966" ], "x-ms-request-id": [ - "6a0dc503-3cc3-46bb-b723-acc3e55df90b" + "9d9e1edf-d1d8-46af-9546-870b55acb633" ], "x-ms-correlation-request-id": [ - "6a0dc503-3cc3-46bb-b723-acc3e55df90b" + "9d9e1edf-d1d8-46af-9546-870b55acb633" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090626Z:6a0dc503-3cc3-46bb-b723-acc3e55df90b" + "NORTHEUROPE:20151022T123611Z:9d9e1edf-d1d8-46af-9546-870b55acb633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,7 +457,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:26 GMT" + "Thu, 22 Oct 2015 12:36:11 GMT" ] }, "StatusCode": 200 @@ -487,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14476" + "14963" ], "x-ms-request-id": [ - "19ea4b56-cad8-49f5-9901-d245a230b164" + "e51b8c08-a13d-427d-a72c-ab84dc17edf4" ], "x-ms-correlation-request-id": [ - "19ea4b56-cad8-49f5-9901-d245a230b164" + "e51b8c08-a13d-427d-a72c-ab84dc17edf4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090630Z:19ea4b56-cad8-49f5-9901-d245a230b164" + "NORTHEUROPE:20151022T123615Z:e51b8c08-a13d-427d-a72c-ab84dc17edf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +505,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:30 GMT" + "Thu, 22 Oct 2015 12:36:14 GMT" ] }, "StatusCode": 200 @@ -535,16 +535,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14474" + "14961" ], "x-ms-request-id": [ - "eae61a68-b8f4-4111-a49f-3f09eead56ab" + "6a870107-595b-492a-aed2-9866b8f447f5" ], "x-ms-correlation-request-id": [ - "eae61a68-b8f4-4111-a49f-3f09eead56ab" + "6a870107-595b-492a-aed2-9866b8f447f5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090634Z:eae61a68-b8f4-4111-a49f-3f09eead56ab" + "NORTHEUROPE:20151022T123618Z:6a870107-595b-492a-aed2-9866b8f447f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +553,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:33 GMT" + "Thu, 22 Oct 2015 12:36:18 GMT" ] }, "StatusCode": 200 @@ -583,16 +583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14471" + "14959" ], "x-ms-request-id": [ - "400031a3-5dc7-4d6c-be01-5f4a0d928fb9" + "5355fe98-ad67-4580-aeae-c41af41fa587" ], "x-ms-correlation-request-id": [ - "400031a3-5dc7-4d6c-be01-5f4a0d928fb9" + "5355fe98-ad67-4580-aeae-c41af41fa587" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090637Z:400031a3-5dc7-4d6c-be01-5f4a0d928fb9" + "NORTHEUROPE:20151022T123622Z:5355fe98-ad67-4580-aeae-c41af41fa587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,7 +601,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:37 GMT" + "Thu, 22 Oct 2015 12:36:22 GMT" ] }, "StatusCode": 200 @@ -631,16 +631,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14469" + "14957" ], "x-ms-request-id": [ - "9aed6758-2bb7-434d-9815-16bc93ce301e" + "b931d4a9-7c30-4705-8fdf-e75c5a66eb33" ], "x-ms-correlation-request-id": [ - "9aed6758-2bb7-434d-9815-16bc93ce301e" + "b931d4a9-7c30-4705-8fdf-e75c5a66eb33" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090641Z:9aed6758-2bb7-434d-9815-16bc93ce301e" + "NORTHEUROPE:20151022T123626Z:b931d4a9-7c30-4705-8fdf-e75c5a66eb33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +649,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:40 GMT" + "Thu, 22 Oct 2015 12:36:25 GMT" ] }, "StatusCode": 200 @@ -679,16 +679,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14467" + "14955" ], "x-ms-request-id": [ - "e5c2d6d7-f760-460f-92a0-5514bcf95151" + "dfd51be8-8ed5-405e-9724-bcb23f3e5d7c" ], "x-ms-correlation-request-id": [ - "e5c2d6d7-f760-460f-92a0-5514bcf95151" + "dfd51be8-8ed5-405e-9724-bcb23f3e5d7c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090645Z:e5c2d6d7-f760-460f-92a0-5514bcf95151" + "NORTHEUROPE:20151022T123629Z:dfd51be8-8ed5-405e-9724-bcb23f3e5d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +697,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:44 GMT" + "Thu, 22 Oct 2015 12:36:29 GMT" ] }, "StatusCode": 200 @@ -727,16 +727,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14465" + "14953" ], "x-ms-request-id": [ - "5fc374d8-711c-4ea4-9d15-b3bd2bab0453" + "80397703-270b-491c-a15c-072fe0972aa1" ], "x-ms-correlation-request-id": [ - "5fc374d8-711c-4ea4-9d15-b3bd2bab0453" + "80397703-270b-491c-a15c-072fe0972aa1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090649Z:5fc374d8-711c-4ea4-9d15-b3bd2bab0453" + "NORTHEUROPE:20151022T123633Z:80397703-270b-491c-a15c-072fe0972aa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,7 +745,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:48 GMT" + "Thu, 22 Oct 2015 12:36:32 GMT" ] }, "StatusCode": 200 @@ -775,16 +775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14463" + "14951" ], "x-ms-request-id": [ - "ae605d52-b319-4c66-92fc-68eedb4a3d36" + "efeb8eff-82eb-47e2-8a5a-0ba9b87b68d1" ], "x-ms-correlation-request-id": [ - "ae605d52-b319-4c66-92fc-68eedb4a3d36" + "efeb8eff-82eb-47e2-8a5a-0ba9b87b68d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090652Z:ae605d52-b319-4c66-92fc-68eedb4a3d36" + "NORTHEUROPE:20151022T123637Z:efeb8eff-82eb-47e2-8a5a-0ba9b87b68d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +793,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:52 GMT" + "Thu, 22 Oct 2015 12:36:36 GMT" ] }, "StatusCode": 200 @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14461" + "14949" ], "x-ms-request-id": [ - "bab9ac88-25d9-467d-8eb4-72369b834216" + "b9ee9702-650c-40f4-89aa-2f43275222ff" ], "x-ms-correlation-request-id": [ - "bab9ac88-25d9-467d-8eb4-72369b834216" + "b9ee9702-650c-40f4-89aa-2f43275222ff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090656Z:bab9ac88-25d9-467d-8eb4-72369b834216" + "NORTHEUROPE:20151022T123640Z:b9ee9702-650c-40f4-89aa-2f43275222ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:56 GMT" + "Thu, 22 Oct 2015 12:36:40 GMT" ] }, "StatusCode": 200 @@ -871,16 +871,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14459" + "14947" ], "x-ms-request-id": [ - "ad5bc099-8c9d-4e42-9f51-2f7164ac002b" + "30a0bb26-9943-4a02-a1b6-de7bc7a68409" ], "x-ms-correlation-request-id": [ - "ad5bc099-8c9d-4e42-9f51-2f7164ac002b" + "30a0bb26-9943-4a02-a1b6-de7bc7a68409" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090700Z:ad5bc099-8c9d-4e42-9f51-2f7164ac002b" + "NORTHEUROPE:20151022T123644Z:30a0bb26-9943-4a02-a1b6-de7bc7a68409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +889,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:59 GMT" + "Thu, 22 Oct 2015 12:36:43 GMT" ] }, "StatusCode": 200 @@ -919,16 +919,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14457" + "14945" ], "x-ms-request-id": [ - "e79313bd-b809-43c2-a3f8-d3aa47b28340" + "5b936cbd-1f69-405e-8a49-e64d0e2aca6c" ], "x-ms-correlation-request-id": [ - "e79313bd-b809-43c2-a3f8-d3aa47b28340" + "5b936cbd-1f69-405e-8a49-e64d0e2aca6c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090703Z:e79313bd-b809-43c2-a3f8-d3aa47b28340" + "NORTHEUROPE:20151022T123647Z:5b936cbd-1f69-405e-8a49-e64d0e2aca6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,7 +937,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:03 GMT" + "Thu, 22 Oct 2015 12:36:47 GMT" ] }, "StatusCode": 200 @@ -967,16 +967,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14455" + "14943" ], "x-ms-request-id": [ - "996ecb8b-2b76-4473-9b72-9960cde0189a" + "6fd2b6d0-5a34-446b-8661-d6347089c9d5" ], "x-ms-correlation-request-id": [ - "996ecb8b-2b76-4473-9b72-9960cde0189a" + "6fd2b6d0-5a34-446b-8661-d6347089c9d5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090707Z:996ecb8b-2b76-4473-9b72-9960cde0189a" + "NORTHEUROPE:20151022T123651Z:6fd2b6d0-5a34-446b-8661-d6347089c9d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,7 +985,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:06 GMT" + "Thu, 22 Oct 2015 12:36:51 GMT" ] }, "StatusCode": 200 @@ -1000,10 +1000,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1015,16 +1015,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14452" + "14940" ], "x-ms-request-id": [ - "0cd5f9d1-7844-47fb-8f8c-d3e00f7fa5e1" + "82fa7ec5-e6e7-46fa-ba7d-7e369068059c" ], "x-ms-correlation-request-id": [ - "0cd5f9d1-7844-47fb-8f8c-d3e00f7fa5e1" + "82fa7ec5-e6e7-46fa-ba7d-7e369068059c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090711Z:0cd5f9d1-7844-47fb-8f8c-d3e00f7fa5e1" + "NORTHEUROPE:20151022T123655Z:82fa7ec5-e6e7-46fa-ba7d-7e369068059c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +1033,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:10 GMT" + "Thu, 22 Oct 2015 12:36:54 GMT" ] }, "StatusCode": 200 @@ -1048,10 +1048,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1063,16 +1063,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14450" + "14938" ], "x-ms-request-id": [ - "7f74e619-7077-48ee-b8e7-19dece01cfca" + "c9439985-00c2-4e77-b155-65e35ca8c099" ], "x-ms-correlation-request-id": [ - "7f74e619-7077-48ee-b8e7-19dece01cfca" + "c9439985-00c2-4e77-b155-65e35ca8c099" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090714Z:7f74e619-7077-48ee-b8e7-19dece01cfca" + "NORTHEUROPE:20151022T123659Z:c9439985-00c2-4e77-b155-65e35ca8c099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1081,7 +1081,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:13 GMT" + "Thu, 22 Oct 2015 12:36:58 GMT" ] }, "StatusCode": 200 @@ -1096,10 +1096,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "1387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1111,16 +1111,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14448" + "14936" ], "x-ms-request-id": [ - "3bd166b3-804d-456b-a5df-99ce94d9e897" + "f2e7dcf9-06b6-4285-a293-94b44bde39b5" ], "x-ms-correlation-request-id": [ - "3bd166b3-804d-456b-a5df-99ce94d9e897" + "f2e7dcf9-06b6-4285-a293-94b44bde39b5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090718Z:3bd166b3-804d-456b-a5df-99ce94d9e897" + "NORTHEUROPE:20151022T123703Z:f2e7dcf9-06b6-4285-a293-94b44bde39b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1129,7 +1129,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:17 GMT" + "Thu, 22 Oct 2015 12:37:02 GMT" ] }, "StatusCode": 200 @@ -1144,10 +1144,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1159,16 +1159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14446" + "14934" ], "x-ms-request-id": [ - "0f92a611-a282-4cdb-9c7a-fac6ac8fb28b" + "fd16b85c-ff06-439d-963a-542191d5cb1a" ], "x-ms-correlation-request-id": [ - "0f92a611-a282-4cdb-9c7a-fac6ac8fb28b" + "fd16b85c-ff06-439d-963a-542191d5cb1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090722Z:0f92a611-a282-4cdb-9c7a-fac6ac8fb28b" + "NORTHEUROPE:20151022T123707Z:fd16b85c-ff06-439d-963a-542191d5cb1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,7 +1177,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:21 GMT" + "Thu, 22 Oct 2015 12:37:07 GMT" ] }, "StatusCode": 200 @@ -1192,10 +1192,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,16 +1207,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14444" + "14932" ], "x-ms-request-id": [ - "ff9105a0-ea4e-419d-972d-f8400c74a33a" + "51c06883-61a7-4890-95a0-486756960e97" ], "x-ms-correlation-request-id": [ - "ff9105a0-ea4e-419d-972d-f8400c74a33a" + "51c06883-61a7-4890-95a0-486756960e97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090725Z:ff9105a0-ea4e-419d-972d-f8400c74a33a" + "NORTHEUROPE:20151022T123711Z:51c06883-61a7-4890-95a0-486756960e97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1225,7 +1225,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:24 GMT" + "Thu, 22 Oct 2015 12:37:10 GMT" ] }, "StatusCode": 200 @@ -1240,10 +1240,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "664" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1255,16 +1255,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14442" + "14930" ], "x-ms-request-id": [ - "50243695-a8b6-472c-be86-cfaba031359b" + "585688ba-375a-4456-aed6-43d3b5741573" ], "x-ms-correlation-request-id": [ - "50243695-a8b6-472c-be86-cfaba031359b" + "585688ba-375a-4456-aed6-43d3b5741573" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090729Z:50243695-a8b6-472c-be86-cfaba031359b" + "NORTHEUROPE:20151022T123715Z:585688ba-375a-4456-aed6-43d3b5741573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:29 GMT" + "Thu, 22 Oct 2015 12:37:14 GMT" ] }, "StatusCode": 200 @@ -1288,10 +1288,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1303,16 +1303,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14440" + "14928" ], "x-ms-request-id": [ - "26a6dd73-1a44-4661-b15c-110bedd377f0" + "43725491-5daa-4471-936a-4002c27534cd" ], "x-ms-correlation-request-id": [ - "26a6dd73-1a44-4661-b15c-110bedd377f0" + "43725491-5daa-4471-936a-4002c27534cd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090733Z:26a6dd73-1a44-4661-b15c-110bedd377f0" + "NORTHEUROPE:20151022T123718Z:43725491-5daa-4471-936a-4002c27534cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,7 +1321,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:33 GMT" + "Thu, 22 Oct 2015 12:37:18 GMT" ] }, "StatusCode": 200 @@ -1336,10 +1336,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1351,16 +1351,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14438" + "14926" ], "x-ms-request-id": [ - "49df7ffe-eb36-4798-b78c-639a24071a1e" + "28744632-48a7-41e4-9369-1a171bf68d3e" ], "x-ms-correlation-request-id": [ - "49df7ffe-eb36-4798-b78c-639a24071a1e" + "28744632-48a7-41e4-9369-1a171bf68d3e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090737Z:49df7ffe-eb36-4798-b78c-639a24071a1e" + "NORTHEUROPE:20151022T123722Z:28744632-48a7-41e4-9369-1a171bf68d3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1369,7 +1369,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:36 GMT" + "Thu, 22 Oct 2015 12:37:22 GMT" ] }, "StatusCode": 200 @@ -1384,10 +1384,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1399,16 +1399,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14434" + "14923" ], "x-ms-request-id": [ - "4bba6786-9b8c-4b15-8ece-6e08d7fb2450" + "64cf815c-9257-4034-a49a-d448cce63c2a" ], "x-ms-correlation-request-id": [ - "4bba6786-9b8c-4b15-8ece-6e08d7fb2450" + "64cf815c-9257-4034-a49a-d448cce63c2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090741Z:4bba6786-9b8c-4b15-8ece-6e08d7fb2450" + "NORTHEUROPE:20151022T123726Z:64cf815c-9257-4034-a49a-d448cce63c2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1417,7 +1417,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:40 GMT" + "Thu, 22 Oct 2015 12:37:26 GMT" ] }, "StatusCode": 200 @@ -1432,10 +1432,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1447,16 +1447,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14432" + "14921" ], "x-ms-request-id": [ - "f5af34db-76ad-4ea4-86b9-f12d917abe56" + "11df5655-43f4-4eee-a28c-2e3de3fde669" ], "x-ms-correlation-request-id": [ - "f5af34db-76ad-4ea4-86b9-f12d917abe56" + "11df5655-43f4-4eee-a28c-2e3de3fde669" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090745Z:f5af34db-76ad-4ea4-86b9-f12d917abe56" + "NORTHEUROPE:20151022T123730Z:11df5655-43f4-4eee-a28c-2e3de3fde669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,7 +1465,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:44 GMT" + "Thu, 22 Oct 2015 12:37:30 GMT" ] }, "StatusCode": 200 @@ -1480,10 +1480,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:02.78415Z\",\r\n \"duration\": \"PT10.7867453S\",\r\n \"trackingId\": \"67d57af7-f09c-4fdf-86c5-18bddfa401f8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1495,16 +1495,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14430" + "14919" ], "x-ms-request-id": [ - "cd1794ca-341f-4cc6-8df9-7b6d39579c53" + "2a816683-8f2e-422e-bf0e-41e644e729c6" ], "x-ms-correlation-request-id": [ - "cd1794ca-341f-4cc6-8df9-7b6d39579c53" + "2a816683-8f2e-422e-bf0e-41e644e729c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090748Z:cd1794ca-341f-4cc6-8df9-7b6d39579c53" + "NORTHEUROPE:20151022T123734Z:2a816683-8f2e-422e-bf0e-41e644e729c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1513,7 +1513,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:48 GMT" + "Thu, 22 Oct 2015 12:37:33 GMT" ] }, "StatusCode": 200 @@ -1528,10 +1528,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:35.4377294Z\",\r\n \"duration\": \"PT43.4403247S\",\r\n \"trackingId\": \"0ac3b374-0492-4585-8664-bdacf372b4c3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1543,16 +1543,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14427" + "14917" ], "x-ms-request-id": [ - "c2ccccad-e4af-4a5a-805a-38bb5e67e51b" + "dadc0ded-cc44-478a-a481-50a43af630ea" ], "x-ms-correlation-request-id": [ - "c2ccccad-e4af-4a5a-805a-38bb5e67e51b" + "dadc0ded-cc44-478a-a481-50a43af630ea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090752Z:c2ccccad-e4af-4a5a-805a-38bb5e67e51b" + "NORTHEUROPE:20151022T123738Z:dadc0ded-cc44-478a-a481-50a43af630ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1561,7 +1561,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:52 GMT" + "Thu, 22 Oct 2015 12:37:38 GMT" ] }, "StatusCode": 200 @@ -1576,10 +1576,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:35.4377294Z\",\r\n \"duration\": \"PT43.4403247S\",\r\n \"trackingId\": \"0ac3b374-0492-4585-8664-bdacf372b4c3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1591,16 +1591,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14424" + "14915" ], "x-ms-request-id": [ - "455a2612-0735-4c1d-9699-d884cd016f82" + "fc2105db-646d-492c-a0fb-26eedbdb4fad" ], "x-ms-correlation-request-id": [ - "455a2612-0735-4c1d-9699-d884cd016f82" + "fc2105db-646d-492c-a0fb-26eedbdb4fad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090757Z:455a2612-0735-4c1d-9699-d884cd016f82" + "NORTHEUROPE:20151022T123742Z:fc2105db-646d-492c-a0fb-26eedbdb4fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1609,7 +1609,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:56 GMT" + "Thu, 22 Oct 2015 12:37:42 GMT" ] }, "StatusCode": 200 @@ -1624,10 +1624,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:35.4377294Z\",\r\n \"duration\": \"PT43.4403247S\",\r\n \"trackingId\": \"0ac3b374-0492-4585-8664-bdacf372b4c3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,16 +1639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14422" + "14913" ], "x-ms-request-id": [ - "bf69e588-049d-43a2-b3a9-fd1c7ccaffe0" + "19abbce1-3dcc-435e-81ea-ccef2a5b1dad" ], "x-ms-correlation-request-id": [ - "bf69e588-049d-43a2-b3a9-fd1c7ccaffe0" + "19abbce1-3dcc-435e-81ea-ccef2a5b1dad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090801Z:bf69e588-049d-43a2-b3a9-fd1c7ccaffe0" + "NORTHEUROPE:20151022T123746Z:19abbce1-3dcc-435e-81ea-ccef2a5b1dad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1657,7 +1657,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:00 GMT" + "Thu, 22 Oct 2015 12:37:45 GMT" ] }, "StatusCode": 200 @@ -1672,10 +1672,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:35.4377294Z\",\r\n \"duration\": \"PT43.4403247S\",\r\n \"trackingId\": \"0ac3b374-0492-4585-8664-bdacf372b4c3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1687,16 +1687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14420" + "14911" ], "x-ms-request-id": [ - "ef2abf03-2714-4444-be07-f03e73cf4d96" + "3e6aa2c7-926f-4b49-aec7-bec889b0e41e" ], "x-ms-correlation-request-id": [ - "ef2abf03-2714-4444-be07-f03e73cf4d96" + "3e6aa2c7-926f-4b49-aec7-bec889b0e41e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090804Z:ef2abf03-2714-4444-be07-f03e73cf4d96" + "NORTHEUROPE:20151022T123750Z:3e6aa2c7-926f-4b49-aec7-bec889b0e41e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1705,7 +1705,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:04 GMT" + "Thu, 22 Oct 2015 12:37:50 GMT" ] }, "StatusCode": 200 @@ -1720,7 +1720,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:07:37.505139Z\",\r\n \"duration\": \"PT11.8417637S\",\r\n \"trackingId\": \"332afef6-7d22-4beb-8dcf-8a854a08c81e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:53.5408943Z\",\r\n \"duration\": \"PT1M1.5434896S\",\r\n \"trackingId\": \"b81d70b1-d9f7-4771-86fc-717b92ff85db\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2102" @@ -1735,16 +1735,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14417" + "14909" ], "x-ms-request-id": [ - "b07302ab-8887-4e3a-8e05-4716df394e2a" + "46b0962f-5850-43c5-8d2e-16acde20e7c3" ], "x-ms-correlation-request-id": [ - "b07302ab-8887-4e3a-8e05-4716df394e2a" + "46b0962f-5850-43c5-8d2e-16acde20e7c3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090808Z:b07302ab-8887-4e3a-8e05-4716df394e2a" + "NORTHEUROPE:20151022T123754Z:46b0962f-5850-43c5-8d2e-16acde20e7c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,7 +1753,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:08 GMT" + "Thu, 22 Oct 2015 12:37:53 GMT" ] }, "StatusCode": 200 @@ -1768,10 +1768,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:09.8708827Z\",\r\n \"duration\": \"PT44.2075074S\",\r\n \"trackingId\": \"1b8fbd82-82a0-4bfb-9175-aa8377437cb1\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:53.5408943Z\",\r\n \"duration\": \"PT1M1.5434896S\",\r\n \"trackingId\": \"b81d70b1-d9f7-4771-86fc-717b92ff85db\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1783,16 +1783,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14413" + "14907" ], "x-ms-request-id": [ - "a7abbd26-19a0-4ec4-879d-dcbc9bfc3934" + "629c6c7a-b2cb-4c2f-8187-a9fcd9efad90" ], "x-ms-correlation-request-id": [ - "a7abbd26-19a0-4ec4-879d-dcbc9bfc3934" + "629c6c7a-b2cb-4c2f-8187-a9fcd9efad90" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090812Z:a7abbd26-19a0-4ec4-879d-dcbc9bfc3934" + "NORTHEUROPE:20151022T123758Z:629c6c7a-b2cb-4c2f-8187-a9fcd9efad90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1801,7 +1801,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:12 GMT" + "Thu, 22 Oct 2015 12:37:58 GMT" ] }, "StatusCode": 200 @@ -1816,10 +1816,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:09.8708827Z\",\r\n \"duration\": \"PT44.2075074S\",\r\n \"trackingId\": \"1b8fbd82-82a0-4bfb-9175-aa8377437cb1\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:53.5408943Z\",\r\n \"duration\": \"PT1M1.5434896S\",\r\n \"trackingId\": \"b81d70b1-d9f7-4771-86fc-717b92ff85db\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1831,16 +1831,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14410" + "14905" ], "x-ms-request-id": [ - "62daad78-200d-4833-85a4-cf2d6727fbda" + "40fe369b-a6c2-41a1-86d3-71109412a29d" ], "x-ms-correlation-request-id": [ - "62daad78-200d-4833-85a4-cf2d6727fbda" + "40fe369b-a6c2-41a1-86d3-71109412a29d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090816Z:62daad78-200d-4833-85a4-cf2d6727fbda" + "NORTHEUROPE:20151022T123802Z:40fe369b-a6c2-41a1-86d3-71109412a29d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1849,7 +1849,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:15 GMT" + "Thu, 22 Oct 2015 12:38:02 GMT" ] }, "StatusCode": 200 @@ -1864,10 +1864,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:09.8708827Z\",\r\n \"duration\": \"PT44.2075074S\",\r\n \"trackingId\": \"1b8fbd82-82a0-4bfb-9175-aa8377437cb1\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:53.5408943Z\",\r\n \"duration\": \"PT1M1.5434896S\",\r\n \"trackingId\": \"b81d70b1-d9f7-4771-86fc-717b92ff85db\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1879,16 +1879,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14408" + "14903" ], "x-ms-request-id": [ - "6a58e973-f901-4c28-adad-648a425ade6c" + "abe70b9e-967c-4ebd-ab3c-1966b218812a" ], "x-ms-correlation-request-id": [ - "6a58e973-f901-4c28-adad-648a425ade6c" + "abe70b9e-967c-4ebd-ab3c-1966b218812a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090820Z:6a58e973-f901-4c28-adad-648a425ade6c" + "NORTHEUROPE:20151022T123806Z:abe70b9e-967c-4ebd-ab3c-1966b218812a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,7 +1897,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:19 GMT" + "Thu, 22 Oct 2015 12:38:05 GMT" ] }, "StatusCode": 200 @@ -1912,10 +1912,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:09.8708827Z\",\r\n \"duration\": \"PT44.2075074S\",\r\n \"trackingId\": \"1b8fbd82-82a0-4bfb-9175-aa8377437cb1\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:37:53.5408943Z\",\r\n \"duration\": \"PT1M1.5434896S\",\r\n \"trackingId\": \"b81d70b1-d9f7-4771-86fc-717b92ff85db\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1927,16 +1927,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14404" + "14901" ], "x-ms-request-id": [ - "7b078cc1-83a8-4fcb-a369-80e8dc35bb5c" + "13cc2a43-4773-4ba1-aa9b-a922327c43cf" ], "x-ms-correlation-request-id": [ - "7b078cc1-83a8-4fcb-a369-80e8dc35bb5c" + "13cc2a43-4773-4ba1-aa9b-a922327c43cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090824Z:7b078cc1-83a8-4fcb-a369-80e8dc35bb5c" + "NORTHEUROPE:20151022T123810Z:13cc2a43-4773-4ba1-aa9b-a922327c43cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1945,7 +1945,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:24 GMT" + "Thu, 22 Oct 2015 12:38:09 GMT" ] }, "StatusCode": 200 @@ -1960,7 +1960,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:27.4305073Z\",\r\n \"duration\": \"PT1M1.767132S\",\r\n \"trackingId\": \"2e63c9a3-941d-44f7-9747-754f6642f8ea\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:10.6812512Z\",\r\n \"duration\": \"PT1M18.6838465S\",\r\n \"trackingId\": \"c9246a99-c39d-46b1-ad07-4ef1da171458\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1975,16 +1975,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14402" + "14899" ], "x-ms-request-id": [ - "c2f4eff8-21ee-4d95-92f0-fadfec0ea7cb" + "4aad3e22-b266-4c30-bc36-7ae771c06e00" ], "x-ms-correlation-request-id": [ - "c2f4eff8-21ee-4d95-92f0-fadfec0ea7cb" + "4aad3e22-b266-4c30-bc36-7ae771c06e00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090828Z:c2f4eff8-21ee-4d95-92f0-fadfec0ea7cb" + "NORTHEUROPE:20151022T123814Z:4aad3e22-b266-4c30-bc36-7ae771c06e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1993,7 +1993,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:28 GMT" + "Thu, 22 Oct 2015 12:38:13 GMT" ] }, "StatusCode": 200 @@ -2008,7 +2008,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:27.4305073Z\",\r\n \"duration\": \"PT1M1.767132S\",\r\n \"trackingId\": \"2e63c9a3-941d-44f7-9747-754f6642f8ea\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:10.6812512Z\",\r\n \"duration\": \"PT1M18.6838465S\",\r\n \"trackingId\": \"c9246a99-c39d-46b1-ad07-4ef1da171458\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -2023,16 +2023,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14400" + "14897" ], "x-ms-request-id": [ - "60d1a8a4-852b-48e9-8888-4cac9e5f5b18" + "0bb0c080-c5b1-4034-88e7-6dafc3acbbd6" ], "x-ms-correlation-request-id": [ - "60d1a8a4-852b-48e9-8888-4cac9e5f5b18" + "0bb0c080-c5b1-4034-88e7-6dafc3acbbd6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090832Z:60d1a8a4-852b-48e9-8888-4cac9e5f5b18" + "NORTHEUROPE:20151022T123818Z:0bb0c080-c5b1-4034-88e7-6dafc3acbbd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2041,7 +2041,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:32 GMT" + "Thu, 22 Oct 2015 12:38:18 GMT" ] }, "StatusCode": 200 @@ -2056,7 +2056,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:27.4305073Z\",\r\n \"duration\": \"PT1M1.767132S\",\r\n \"trackingId\": \"2e63c9a3-941d-44f7-9747-754f6642f8ea\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:10.6812512Z\",\r\n \"duration\": \"PT1M18.6838465S\",\r\n \"trackingId\": \"c9246a99-c39d-46b1-ad07-4ef1da171458\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -2071,16 +2071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14396" + "14894" ], "x-ms-request-id": [ - "7951f1fd-1b7b-4f9d-9bbf-a14b04f3ce7c" + "e4bff86a-4d73-4225-9dc7-a3bd2709c3b5" ], "x-ms-correlation-request-id": [ - "7951f1fd-1b7b-4f9d-9bbf-a14b04f3ce7c" + "e4bff86a-4d73-4225-9dc7-a3bd2709c3b5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090836Z:7951f1fd-1b7b-4f9d-9bbf-a14b04f3ce7c" + "NORTHEUROPE:20151022T123822Z:e4bff86a-4d73-4225-9dc7-a3bd2709c3b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,7 +2089,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:36 GMT" + "Thu, 22 Oct 2015 12:38:21 GMT" ] }, "StatusCode": 200 @@ -2104,7 +2104,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:27.4305073Z\",\r\n \"duration\": \"PT1M1.767132S\",\r\n \"trackingId\": \"2e63c9a3-941d-44f7-9747-754f6642f8ea\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:10.6812512Z\",\r\n \"duration\": \"PT1M18.6838465S\",\r\n \"trackingId\": \"c9246a99-c39d-46b1-ad07-4ef1da171458\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -2119,16 +2119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14393" + "14892" ], "x-ms-request-id": [ - "80940dfc-fb24-49c3-9728-1c5557b2cbe6" + "6b9de579-4652-425a-b8b8-4f8f91ea82a3" ], "x-ms-correlation-request-id": [ - "80940dfc-fb24-49c3-9728-1c5557b2cbe6" + "6b9de579-4652-425a-b8b8-4f8f91ea82a3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090840Z:80940dfc-fb24-49c3-9728-1c5557b2cbe6" + "NORTHEUROPE:20151022T123826Z:6b9de579-4652-425a-b8b8-4f8f91ea82a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,7 +2137,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:40 GMT" + "Thu, 22 Oct 2015 12:38:25 GMT" ] }, "StatusCode": 200 @@ -2152,10 +2152,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:27.4305073Z\",\r\n \"duration\": \"PT1M1.767132S\",\r\n \"trackingId\": \"2e63c9a3-941d-44f7-9747-754f6642f8ea\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:28.7697942Z\",\r\n \"duration\": \"PT1M36.7723895S\",\r\n \"trackingId\": \"c9419f2d-f437-4c5c-b042-ae49f6b303cc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2167,16 +2167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14391" + "14890" ], "x-ms-request-id": [ - "42a34e93-7a22-41ba-a19c-42a487f26b1a" + "6d947c5c-334d-4433-9c4e-3515d3026229" ], "x-ms-correlation-request-id": [ - "42a34e93-7a22-41ba-a19c-42a487f26b1a" + "6d947c5c-334d-4433-9c4e-3515d3026229" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090844Z:42a34e93-7a22-41ba-a19c-42a487f26b1a" + "NORTHEUROPE:20151022T123830Z:6d947c5c-334d-4433-9c4e-3515d3026229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2185,7 +2185,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:44 GMT" + "Thu, 22 Oct 2015 12:38:29 GMT" ] }, "StatusCode": 200 @@ -2200,10 +2200,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:08:44.964715Z\",\r\n \"duration\": \"PT1M19.3013397S\",\r\n \"trackingId\": \"ba4b3f85-2e71-49b3-82b3-610c408157bc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:28.7697942Z\",\r\n \"duration\": \"PT1M36.7723895S\",\r\n \"trackingId\": \"c9419f2d-f437-4c5c-b042-ae49f6b303cc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2215,16 +2215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14389" + "14888" ], "x-ms-request-id": [ - "06e5fba6-55ac-48e8-a1f8-876741ef730d" + "be70b065-f310-429b-967f-5e844fbb97e9" ], "x-ms-correlation-request-id": [ - "06e5fba6-55ac-48e8-a1f8-876741ef730d" + "be70b065-f310-429b-967f-5e844fbb97e9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090848Z:06e5fba6-55ac-48e8-a1f8-876741ef730d" + "NORTHEUROPE:20151022T123834Z:be70b065-f310-429b-967f-5e844fbb97e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,7 +2233,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:47 GMT" + "Thu, 22 Oct 2015 12:38:33 GMT" ] }, "StatusCode": 200 @@ -2248,10 +2248,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:08:50.4629238Z\",\r\n \"duration\": \"PT1M24.7995485S\",\r\n \"trackingId\": \"cecc617a-1300-4464-aceb-db9f818d766c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:32.3256546Z\",\r\n \"duration\": \"PT6.561169S\",\r\n \"trackingId\": \"caff483d-eb1b-4e94-9f77-833f008bd429\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:07:25.5228628Z\",\r\n \"duration\": \"PT1M11.3440114S\",\r\n \"trackingId\": \"bb89485f-d060-4ec1-94f7-b7042750395f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:35.8384369Z\",\r\n \"duration\": \"PT1M43.8410322S\",\r\n \"trackingId\": \"f0698c08-6be9-4311-91a1-d6d539728b3a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2106" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2263,16 +2263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14387" + "14886" ], "x-ms-request-id": [ - "cfd50339-d89e-4369-a8e6-a9132bc03abb" + "12f9b2e0-340a-4b53-8cff-312bd345ed54" ], "x-ms-correlation-request-id": [ - "cfd50339-d89e-4369-a8e6-a9132bc03abb" + "12f9b2e0-340a-4b53-8cff-312bd345ed54" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090852Z:cfd50339-d89e-4369-a8e6-a9132bc03abb" + "NORTHEUROPE:20151022T123838Z:12f9b2e0-340a-4b53-8cff-312bd345ed54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2281,14 +2281,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:51 GMT" + "Thu, 22 Oct 2015 12:38:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2296,10 +2296,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:41.4744186Z\",\r\n \"duration\": \"PT1M49.4770139S\",\r\n \"trackingId\": \"252be96b-5f2e-4da7-9c42-6baa2294d9ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2311,16 +2311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14486" + "14884" ], "x-ms-request-id": [ - "ba0aaabc-18b8-4ff5-84a3-0062043fd598" + "842ca5a3-64da-4a39-a26b-ea62e6b4facb" ], "x-ms-correlation-request-id": [ - "ba0aaabc-18b8-4ff5-84a3-0062043fd598" + "842ca5a3-64da-4a39-a26b-ea62e6b4facb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090616Z:ba0aaabc-18b8-4ff5-84a3-0062043fd598" + "NORTHEUROPE:20151022T123842Z:842ca5a3-64da-4a39-a26b-ea62e6b4facb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2329,14 +2329,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:16 GMT" + "Thu, 22 Oct 2015 12:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2344,10 +2344,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:41.4744186Z\",\r\n \"duration\": \"PT1M49.4770139S\",\r\n \"trackingId\": \"252be96b-5f2e-4da7-9c42-6baa2294d9ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,16 +2359,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14483" + "14882" ], "x-ms-request-id": [ - "3a53e1b4-30bb-49c4-aebd-cfb79154e9f7" + "e3fc041f-a623-4317-bae6-1794ef4e0e44" ], "x-ms-correlation-request-id": [ - "3a53e1b4-30bb-49c4-aebd-cfb79154e9f7" + "e3fc041f-a623-4317-bae6-1794ef4e0e44" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090620Z:3a53e1b4-30bb-49c4-aebd-cfb79154e9f7" + "NORTHEUROPE:20151022T123845Z:e3fc041f-a623-4317-bae6-1794ef4e0e44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2377,14 +2377,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:19 GMT" + "Thu, 22 Oct 2015 12:38:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2392,10 +2392,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:38:41.4744186Z\",\r\n \"duration\": \"PT1M49.4770139S\",\r\n \"trackingId\": \"252be96b-5f2e-4da7-9c42-6baa2294d9ec\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2407,16 +2407,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14479" + "14880" ], "x-ms-request-id": [ - "4098cea1-4608-4fa3-b6fa-646a5c868bc7" + "f5d7d675-3dbe-41aa-8075-2f2763c393f8" ], "x-ms-correlation-request-id": [ - "4098cea1-4608-4fa3-b6fa-646a5c868bc7" + "f5d7d675-3dbe-41aa-8075-2f2763c393f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090624Z:4098cea1-4608-4fa3-b6fa-646a5c868bc7" + "NORTHEUROPE:20151022T123849Z:f5d7d675-3dbe-41aa-8075-2f2763c393f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2425,14 +2425,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:23 GMT" + "Thu, 22 Oct 2015 12:38:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2440,10 +2440,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:38:51.5186149Z\",\r\n \"duration\": \"PT1M59.5212102S\",\r\n \"trackingId\": \"4901425c-78e2-4c42-a2a3-ff4ee21455bf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:55.9761014Z\",\r\n \"duration\": \"PT3.9766984S\",\r\n \"trackingId\": \"8de145a6-2cd0-42fb-9e82-7ff1534c6b6d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup/operations/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:36:51.855865Z\",\r\n \"duration\": \"PT53.5570153S\",\r\n \"trackingId\": \"3c960186-6a16-49fe-ac0c-6b9a9f7cb764\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,16 +2455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14477" + "14878" ], "x-ms-request-id": [ - "dd27f555-97f2-4587-a056-fc24d5c106ab" + "927802b8-8dcd-4d23-963a-c43d26af214c" ], "x-ms-correlation-request-id": [ - "dd27f555-97f2-4587-a056-fc24d5c106ab" + "927802b8-8dcd-4d23-963a-c43d26af214c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090627Z:dd27f555-97f2-4587-a056-fc24d5c106ab" + "NORTHEUROPE:20151022T123853Z:927802b8-8dcd-4d23-963a-c43d26af214c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2473,7 +2473,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:27 GMT" + "Thu, 22 Oct 2015 12:38:53 GMT" ] }, "StatusCode": 200 @@ -2488,10 +2488,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2503,16 +2503,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14475" + "14971" ], "x-ms-request-id": [ - "28a0d087-f758-40cc-8ee8-0c7490a5b67a" + "deffb89c-f466-4d9a-8d71-4a758aa49aa9" ], "x-ms-correlation-request-id": [ - "28a0d087-f758-40cc-8ee8-0c7490a5b67a" + "deffb89c-f466-4d9a-8d71-4a758aa49aa9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090631Z:28a0d087-f758-40cc-8ee8-0c7490a5b67a" + "NORTHEUROPE:20151022T123601Z:deffb89c-f466-4d9a-8d71-4a758aa49aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,7 +2521,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:30 GMT" + "Thu, 22 Oct 2015 12:36:00 GMT" ] }, "StatusCode": 200 @@ -2536,10 +2536,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,16 +2551,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14473" + "14969" ], "x-ms-request-id": [ - "36008e5c-9fdd-444e-adda-83ec2115d6ab" + "483c08bc-b243-4fd4-93f6-ea7089b59c69" ], "x-ms-correlation-request-id": [ - "36008e5c-9fdd-444e-adda-83ec2115d6ab" + "483c08bc-b243-4fd4-93f6-ea7089b59c69" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090634Z:36008e5c-9fdd-444e-adda-83ec2115d6ab" + "NORTHEUROPE:20151022T123604Z:483c08bc-b243-4fd4-93f6-ea7089b59c69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2569,7 +2569,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:34 GMT" + "Thu, 22 Oct 2015 12:36:04 GMT" ] }, "StatusCode": 200 @@ -2584,10 +2584,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,16 +2599,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14470" + "14967" ], "x-ms-request-id": [ - "1bbc031f-ab7b-451a-894d-814b43bf21af" + "f1e549cf-d1e9-4519-a10e-89c180f92bdf" ], "x-ms-correlation-request-id": [ - "1bbc031f-ab7b-451a-894d-814b43bf21af" + "f1e549cf-d1e9-4519-a10e-89c180f92bdf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090638Z:1bbc031f-ab7b-451a-894d-814b43bf21af" + "NORTHEUROPE:20151022T123608Z:f1e549cf-d1e9-4519-a10e-89c180f92bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2617,7 +2617,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:37 GMT" + "Thu, 22 Oct 2015 12:36:07 GMT" ] }, "StatusCode": 200 @@ -2632,10 +2632,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2647,16 +2647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14468" + "14965" ], "x-ms-request-id": [ - "496cc43f-c0f9-4c97-8412-122a3bb669f0" + "d9e894f0-c798-4859-bbc2-54282a98dbda" ], "x-ms-correlation-request-id": [ - "496cc43f-c0f9-4c97-8412-122a3bb669f0" + "d9e894f0-c798-4859-bbc2-54282a98dbda" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090642Z:496cc43f-c0f9-4c97-8412-122a3bb669f0" + "NORTHEUROPE:20151022T123612Z:d9e894f0-c798-4859-bbc2-54282a98dbda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,7 +2665,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:41 GMT" + "Thu, 22 Oct 2015 12:36:12 GMT" ] }, "StatusCode": 200 @@ -2680,10 +2680,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,16 +2695,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14466" + "14962" ], "x-ms-request-id": [ - "61e95848-379d-43d3-bbb2-b193d6800662" + "56c18419-4f1d-4753-b9a8-3d8526c6a517" ], "x-ms-correlation-request-id": [ - "61e95848-379d-43d3-bbb2-b193d6800662" + "56c18419-4f1d-4753-b9a8-3d8526c6a517" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090646Z:61e95848-379d-43d3-bbb2-b193d6800662" + "NORTHEUROPE:20151022T123615Z:56c18419-4f1d-4753-b9a8-3d8526c6a517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2713,7 +2713,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:46 GMT" + "Thu, 22 Oct 2015 12:36:15 GMT" ] }, "StatusCode": 200 @@ -2728,10 +2728,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2743,16 +2743,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14464" + "14960" ], "x-ms-request-id": [ - "30db0a5f-a492-4063-b34b-5c3e187f8c72" + "787eb39e-14e7-48fe-bd49-6187098007e1" ], "x-ms-correlation-request-id": [ - "30db0a5f-a492-4063-b34b-5c3e187f8c72" + "787eb39e-14e7-48fe-bd49-6187098007e1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090649Z:30db0a5f-a492-4063-b34b-5c3e187f8c72" + "NORTHEUROPE:20151022T123619Z:787eb39e-14e7-48fe-bd49-6187098007e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2761,7 +2761,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:49 GMT" + "Thu, 22 Oct 2015 12:36:18 GMT" ] }, "StatusCode": 200 @@ -2776,10 +2776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2791,16 +2791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14462" + "14958" ], "x-ms-request-id": [ - "d15aba71-d372-4299-a0b8-9d6c8bbad467" + "633277de-6b25-4a07-8a12-8d43d90f383e" ], "x-ms-correlation-request-id": [ - "d15aba71-d372-4299-a0b8-9d6c8bbad467" + "633277de-6b25-4a07-8a12-8d43d90f383e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090653Z:d15aba71-d372-4299-a0b8-9d6c8bbad467" + "NORTHEUROPE:20151022T123623Z:633277de-6b25-4a07-8a12-8d43d90f383e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2809,7 +2809,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:53 GMT" + "Thu, 22 Oct 2015 12:36:22 GMT" ] }, "StatusCode": 200 @@ -2824,10 +2824,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2839,16 +2839,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14460" + "14956" ], "x-ms-request-id": [ - "1edef298-b952-457f-a806-25527e0d6850" + "f96bd99a-e836-42f0-bdd2-9c08885525d7" ], "x-ms-correlation-request-id": [ - "1edef298-b952-457f-a806-25527e0d6850" + "f96bd99a-e836-42f0-bdd2-9c08885525d7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090657Z:1edef298-b952-457f-a806-25527e0d6850" + "NORTHEUROPE:20151022T123626Z:f96bd99a-e836-42f0-bdd2-9c08885525d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2857,7 +2857,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:06:56 GMT" + "Thu, 22 Oct 2015 12:36:25 GMT" ] }, "StatusCode": 200 @@ -2872,10 +2872,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2887,16 +2887,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14458" + "14954" ], "x-ms-request-id": [ - "1f8a6754-1a59-4200-ad78-85452179ce16" + "528343dc-ad7c-4348-b075-d3cb92dc06dd" ], "x-ms-correlation-request-id": [ - "1f8a6754-1a59-4200-ad78-85452179ce16" + "528343dc-ad7c-4348-b075-d3cb92dc06dd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090700Z:1f8a6754-1a59-4200-ad78-85452179ce16" + "NORTHEUROPE:20151022T123630Z:528343dc-ad7c-4348-b075-d3cb92dc06dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2905,7 +2905,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:00 GMT" + "Thu, 22 Oct 2015 12:36:30 GMT" ] }, "StatusCode": 200 @@ -2920,10 +2920,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,16 +2935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14456" + "14952" ], "x-ms-request-id": [ - "fe1b0670-d851-4ecc-94ba-75617674c118" + "25653fcf-1904-45e3-b864-ad329296fd59" ], "x-ms-correlation-request-id": [ - "fe1b0670-d851-4ecc-94ba-75617674c118" + "25653fcf-1904-45e3-b864-ad329296fd59" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090704Z:fe1b0670-d851-4ecc-94ba-75617674c118" + "NORTHEUROPE:20151022T123634Z:25653fcf-1904-45e3-b864-ad329296fd59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,7 +2953,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:03 GMT" + "Thu, 22 Oct 2015 12:36:33 GMT" ] }, "StatusCode": 200 @@ -2968,10 +2968,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,16 +2983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14454" + "14950" ], "x-ms-request-id": [ - "08c0740e-fa4d-4ba3-ad81-b0364582ac77" + "850fdb7e-7e0f-4eed-ace9-21c5aed58361" ], "x-ms-correlation-request-id": [ - "08c0740e-fa4d-4ba3-ad81-b0364582ac77" + "850fdb7e-7e0f-4eed-ace9-21c5aed58361" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090708Z:08c0740e-fa4d-4ba3-ad81-b0364582ac77" + "NORTHEUROPE:20151022T123637Z:850fdb7e-7e0f-4eed-ace9-21c5aed58361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,7 +3001,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:07 GMT" + "Thu, 22 Oct 2015 12:36:36 GMT" ] }, "StatusCode": 200 @@ -3016,10 +3016,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3031,16 +3031,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14451" + "14948" ], "x-ms-request-id": [ - "005247b8-d618-4ec4-935a-d5ad1359b504" + "4c7e3557-f543-4dc4-9e46-cc2b8d80e770" ], "x-ms-correlation-request-id": [ - "005247b8-d618-4ec4-935a-d5ad1359b504" + "4c7e3557-f543-4dc4-9e46-cc2b8d80e770" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090711Z:005247b8-d618-4ec4-935a-d5ad1359b504" + "NORTHEUROPE:20151022T123641Z:4c7e3557-f543-4dc4-9e46-cc2b8d80e770" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,7 +3049,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:11 GMT" + "Thu, 22 Oct 2015 12:36:40 GMT" ] }, "StatusCode": 200 @@ -3064,10 +3064,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3079,16 +3079,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14449" + "14946" ], "x-ms-request-id": [ - "b3569d53-c279-415f-9afc-994901e6ca9e" + "551311ad-80e1-4190-80ec-b07d940eace3" ], "x-ms-correlation-request-id": [ - "b3569d53-c279-415f-9afc-994901e6ca9e" + "551311ad-80e1-4190-80ec-b07d940eace3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090715Z:b3569d53-c279-415f-9afc-994901e6ca9e" + "NORTHEUROPE:20151022T123645Z:551311ad-80e1-4190-80ec-b07d940eace3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,7 +3097,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:14 GMT" + "Thu, 22 Oct 2015 12:36:44 GMT" ] }, "StatusCode": 200 @@ -3112,10 +3112,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3127,16 +3127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14447" + "14944" ], "x-ms-request-id": [ - "51e06be4-f8bb-4579-8a7b-00938aaed0be" + "ccaeb88a-2805-4719-ac8d-f6776b3ebece" ], "x-ms-correlation-request-id": [ - "51e06be4-f8bb-4579-8a7b-00938aaed0be" + "ccaeb88a-2805-4719-ac8d-f6776b3ebece" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090719Z:51e06be4-f8bb-4579-8a7b-00938aaed0be" + "NORTHEUROPE:20151022T123648Z:ccaeb88a-2805-4719-ac8d-f6776b3ebece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3145,7 +3145,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:18 GMT" + "Thu, 22 Oct 2015 12:36:48 GMT" ] }, "StatusCode": 200 @@ -3160,10 +3160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3175,16 +3175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14445" + "14942" ], "x-ms-request-id": [ - "2fe51423-542d-4c85-85c8-4dd6883dc4d0" + "4fd5a0e6-0024-4f32-9052-165c6802ed41" ], "x-ms-correlation-request-id": [ - "2fe51423-542d-4c85-85c8-4dd6883dc4d0" + "4fd5a0e6-0024-4f32-9052-165c6802ed41" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090722Z:2fe51423-542d-4c85-85c8-4dd6883dc4d0" + "NORTHEUROPE:20151022T123652Z:4fd5a0e6-0024-4f32-9052-165c6802ed41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3193,7 +3193,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:21 GMT" + "Thu, 22 Oct 2015 12:36:51 GMT" ] }, "StatusCode": 200 @@ -3208,10 +3208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3223,16 +3223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14443" + "14939" ], "x-ms-request-id": [ - "7c637f66-4298-46b6-a497-d4e41f9a4ae7" + "4b08dea9-9cb6-450b-b16e-8ae6fbd88929" ], "x-ms-correlation-request-id": [ - "7c637f66-4298-46b6-a497-d4e41f9a4ae7" + "4b08dea9-9cb6-450b-b16e-8ae6fbd88929" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090726Z:7c637f66-4298-46b6-a497-d4e41f9a4ae7" + "NORTHEUROPE:20151022T123655Z:4b08dea9-9cb6-450b-b16e-8ae6fbd88929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,7 +3241,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:25 GMT" + "Thu, 22 Oct 2015 12:36:55 GMT" ] }, "StatusCode": 200 @@ -3256,10 +3256,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3271,16 +3271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14441" + "14937" ], "x-ms-request-id": [ - "fa908863-1a64-4c78-8c2e-bc332377e457" + "4156d0b9-7932-49e4-bd0f-4430c354843c" ], "x-ms-correlation-request-id": [ - "fa908863-1a64-4c78-8c2e-bc332377e457" + "4156d0b9-7932-49e4-bd0f-4430c354843c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090730Z:fa908863-1a64-4c78-8c2e-bc332377e457" + "NORTHEUROPE:20151022T123659Z:4156d0b9-7932-49e4-bd0f-4430c354843c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3289,7 +3289,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:30 GMT" + "Thu, 22 Oct 2015 12:36:58 GMT" ] }, "StatusCode": 200 @@ -3304,10 +3304,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3319,16 +3319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14439" + "14935" ], "x-ms-request-id": [ - "bdc15907-1477-4d5c-bd41-5006fb1d3ba8" + "52a08682-858e-4daa-8119-60d94c346e0e" ], "x-ms-correlation-request-id": [ - "bdc15907-1477-4d5c-bd41-5006fb1d3ba8" + "52a08682-858e-4daa-8119-60d94c346e0e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090733Z:bdc15907-1477-4d5c-bd41-5006fb1d3ba8" + "NORTHEUROPE:20151022T123703Z:52a08682-858e-4daa-8119-60d94c346e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3337,7 +3337,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:33 GMT" + "Thu, 22 Oct 2015 12:37:02 GMT" ] }, "StatusCode": 200 @@ -3352,10 +3352,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3367,16 +3367,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14437" + "14933" ], "x-ms-request-id": [ - "57cf00c9-3f68-482c-91d4-99c757f08368" + "588ec424-f3e2-439d-87e6-d0002908a05a" ], "x-ms-correlation-request-id": [ - "57cf00c9-3f68-482c-91d4-99c757f08368" + "588ec424-f3e2-439d-87e6-d0002908a05a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090737Z:57cf00c9-3f68-482c-91d4-99c757f08368" + "NORTHEUROPE:20151022T123707Z:588ec424-f3e2-439d-87e6-d0002908a05a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3385,7 +3385,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:37 GMT" + "Thu, 22 Oct 2015 12:37:07 GMT" ] }, "StatusCode": 200 @@ -3400,10 +3400,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3415,16 +3415,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14433" + "14931" ], "x-ms-request-id": [ - "f2201d3e-669c-4d9a-a0a5-ca5316330500" + "eae9a517-bcf9-449d-9ca6-207e39c746d3" ], "x-ms-correlation-request-id": [ - "f2201d3e-669c-4d9a-a0a5-ca5316330500" + "eae9a517-bcf9-449d-9ca6-207e39c746d3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090741Z:f2201d3e-669c-4d9a-a0a5-ca5316330500" + "NORTHEUROPE:20151022T123711Z:eae9a517-bcf9-449d-9ca6-207e39c746d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,7 +3433,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:41 GMT" + "Thu, 22 Oct 2015 12:37:11 GMT" ] }, "StatusCode": 200 @@ -3448,10 +3448,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3463,16 +3463,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14431" + "14929" ], "x-ms-request-id": [ - "9237e04f-a420-4236-976b-8dce894180cf" + "3ba1a4ae-2049-4a72-80a3-c3cc3a33e366" ], "x-ms-correlation-request-id": [ - "9237e04f-a420-4236-976b-8dce894180cf" + "3ba1a4ae-2049-4a72-80a3-c3cc3a33e366" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090745Z:9237e04f-a420-4236-976b-8dce894180cf" + "NORTHEUROPE:20151022T123715Z:3ba1a4ae-2049-4a72-80a3-c3cc3a33e366" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,7 +3481,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:45 GMT" + "Thu, 22 Oct 2015 12:37:15 GMT" ] }, "StatusCode": 200 @@ -3496,10 +3496,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3511,16 +3511,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14428" + "14927" ], "x-ms-request-id": [ - "6a167f55-a3f3-4d43-abc9-937c7b09cfe1" + "86dbfea5-7382-443c-8a0f-d3bc9fc91d78" ], "x-ms-correlation-request-id": [ - "6a167f55-a3f3-4d43-abc9-937c7b09cfe1" + "86dbfea5-7382-443c-8a0f-d3bc9fc91d78" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090749Z:6a167f55-a3f3-4d43-abc9-937c7b09cfe1" + "NORTHEUROPE:20151022T123719Z:86dbfea5-7382-443c-8a0f-d3bc9fc91d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3529,7 +3529,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:49 GMT" + "Thu, 22 Oct 2015 12:37:19 GMT" ] }, "StatusCode": 200 @@ -3544,10 +3544,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3559,16 +3559,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14425" + "14924" ], "x-ms-request-id": [ - "7851c9c8-82e5-418e-83be-4a11f6b0366a" + "5e9b9040-e6e4-4545-943d-8a108dc915ff" ], "x-ms-correlation-request-id": [ - "7851c9c8-82e5-418e-83be-4a11f6b0366a" + "5e9b9040-e6e4-4545-943d-8a108dc915ff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090753Z:7851c9c8-82e5-418e-83be-4a11f6b0366a" + "NORTHEUROPE:20151022T123723Z:5e9b9040-e6e4-4545-943d-8a108dc915ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3577,7 +3577,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:53 GMT" + "Thu, 22 Oct 2015 12:37:22 GMT" ] }, "StatusCode": 200 @@ -3592,10 +3592,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3607,16 +3607,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14423" + "14922" ], "x-ms-request-id": [ - "ea9325b1-4ec1-40ed-ab78-0dd221b32841" + "49cc7092-2403-4b46-98d7-cfa5780db2a4" ], "x-ms-correlation-request-id": [ - "ea9325b1-4ec1-40ed-ab78-0dd221b32841" + "49cc7092-2403-4b46-98d7-cfa5780db2a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090757Z:ea9325b1-4ec1-40ed-ab78-0dd221b32841" + "NORTHEUROPE:20151022T123727Z:49cc7092-2403-4b46-98d7-cfa5780db2a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3625,7 +3625,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:07:57 GMT" + "Thu, 22 Oct 2015 12:37:27 GMT" ] }, "StatusCode": 200 @@ -3640,10 +3640,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3655,16 +3655,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14421" + "14920" ], "x-ms-request-id": [ - "2b892713-cecf-4567-8a61-24e858444814" + "a69d02bb-9e0e-437d-a933-94cf789f7f3d" ], "x-ms-correlation-request-id": [ - "2b892713-cecf-4567-8a61-24e858444814" + "a69d02bb-9e0e-437d-a933-94cf789f7f3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090801Z:2b892713-cecf-4567-8a61-24e858444814" + "NORTHEUROPE:20151022T123731Z:a69d02bb-9e0e-437d-a933-94cf789f7f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3673,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:01 GMT" + "Thu, 22 Oct 2015 12:37:30 GMT" ] }, "StatusCode": 200 @@ -3688,10 +3688,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3703,16 +3703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14419" + "14918" ], "x-ms-request-id": [ - "18be425c-685a-4dae-a6e7-25c403be91ba" + "71ddf759-29c7-4e57-beea-90bb83cc6e8f" ], "x-ms-correlation-request-id": [ - "18be425c-685a-4dae-a6e7-25c403be91ba" + "71ddf759-29c7-4e57-beea-90bb83cc6e8f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090805Z:18be425c-685a-4dae-a6e7-25c403be91ba" + "NORTHEUROPE:20151022T123735Z:71ddf759-29c7-4e57-beea-90bb83cc6e8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3721,7 +3721,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:04 GMT" + "Thu, 22 Oct 2015 12:37:34 GMT" ] }, "StatusCode": 200 @@ -3736,10 +3736,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3751,16 +3751,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14416" + "14916" ], "x-ms-request-id": [ - "b2d46f70-a313-47ca-8ce6-30247b1fbba9" + "7468984d-f0ef-475f-9a59-5b54d772c3de" ], "x-ms-correlation-request-id": [ - "b2d46f70-a313-47ca-8ce6-30247b1fbba9" + "7468984d-f0ef-475f-9a59-5b54d772c3de" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090809Z:b2d46f70-a313-47ca-8ce6-30247b1fbba9" + "NORTHEUROPE:20151022T123739Z:7468984d-f0ef-475f-9a59-5b54d772c3de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,7 +3769,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:08 GMT" + "Thu, 22 Oct 2015 12:37:39 GMT" ] }, "StatusCode": 200 @@ -3784,10 +3784,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3799,16 +3799,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14412" + "14914" ], "x-ms-request-id": [ - "e39b4828-5084-4e3e-9987-f2e0cbf97427" + "dd67f9f5-9912-4c76-bb26-74fa0a6db8df" ], "x-ms-correlation-request-id": [ - "e39b4828-5084-4e3e-9987-f2e0cbf97427" + "dd67f9f5-9912-4c76-bb26-74fa0a6db8df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090813Z:e39b4828-5084-4e3e-9987-f2e0cbf97427" + "NORTHEUROPE:20151022T123743Z:dd67f9f5-9912-4c76-bb26-74fa0a6db8df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3817,7 +3817,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:12 GMT" + "Thu, 22 Oct 2015 12:37:42 GMT" ] }, "StatusCode": 200 @@ -3832,10 +3832,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,16 +3847,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14409" + "14912" ], "x-ms-request-id": [ - "115fdcdb-7597-498e-bedf-3dd53bd5f27f" + "be2e7313-26b5-4b37-97cc-6c6f222d2a2e" ], "x-ms-correlation-request-id": [ - "115fdcdb-7597-498e-bedf-3dd53bd5f27f" + "be2e7313-26b5-4b37-97cc-6c6f222d2a2e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090817Z:115fdcdb-7597-498e-bedf-3dd53bd5f27f" + "NORTHEUROPE:20151022T123747Z:be2e7313-26b5-4b37-97cc-6c6f222d2a2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,7 +3865,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:16 GMT" + "Thu, 22 Oct 2015 12:37:46 GMT" ] }, "StatusCode": 200 @@ -3880,10 +3880,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3895,16 +3895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14407" + "14910" ], "x-ms-request-id": [ - "dfeae26a-bf51-4212-9083-d2ed7f4e3f5b" + "fabfd72f-f5c5-4317-99ad-854265202da3" ], "x-ms-correlation-request-id": [ - "dfeae26a-bf51-4212-9083-d2ed7f4e3f5b" + "fabfd72f-f5c5-4317-99ad-854265202da3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090821Z:dfeae26a-bf51-4212-9083-d2ed7f4e3f5b" + "NORTHEUROPE:20151022T123751Z:fabfd72f-f5c5-4317-99ad-854265202da3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,7 +3913,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:21 GMT" + "Thu, 22 Oct 2015 12:37:51 GMT" ] }, "StatusCode": 200 @@ -3928,10 +3928,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3943,16 +3943,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14403" + "14908" ], "x-ms-request-id": [ - "4f56d915-ba4d-4ff1-9565-101707080aba" + "962982b0-a489-4ebb-b8e0-6cf5da5ede2b" ], "x-ms-correlation-request-id": [ - "4f56d915-ba4d-4ff1-9565-101707080aba" + "962982b0-a489-4ebb-b8e0-6cf5da5ede2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090825Z:4f56d915-ba4d-4ff1-9565-101707080aba" + "NORTHEUROPE:20151022T123755Z:962982b0-a489-4ebb-b8e0-6cf5da5ede2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3961,7 +3961,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:25 GMT" + "Thu, 22 Oct 2015 12:37:54 GMT" ] }, "StatusCode": 200 @@ -3976,10 +3976,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3991,16 +3991,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14401" + "14906" ], "x-ms-request-id": [ - "4777243f-61f8-48d6-8d9c-ceeb8c0120e6" + "0e6bf831-bbcc-47eb-9190-7c7c666e43fe" ], "x-ms-correlation-request-id": [ - "4777243f-61f8-48d6-8d9c-ceeb8c0120e6" + "0e6bf831-bbcc-47eb-9190-7c7c666e43fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090829Z:4777243f-61f8-48d6-8d9c-ceeb8c0120e6" + "NORTHEUROPE:20151022T123759Z:0e6bf831-bbcc-47eb-9190-7c7c666e43fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4009,7 +4009,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:29 GMT" + "Thu, 22 Oct 2015 12:37:59 GMT" ] }, "StatusCode": 200 @@ -4024,10 +4024,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4039,16 +4039,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14398" + "14904" ], "x-ms-request-id": [ - "189cb35a-86e6-471b-9735-3005302c3a29" + "92dd3ccb-d24f-4ecb-890e-017dad797018" ], "x-ms-correlation-request-id": [ - "189cb35a-86e6-471b-9735-3005302c3a29" + "92dd3ccb-d24f-4ecb-890e-017dad797018" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090833Z:189cb35a-86e6-471b-9735-3005302c3a29" + "NORTHEUROPE:20151022T123803Z:92dd3ccb-d24f-4ecb-890e-017dad797018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4057,7 +4057,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:33 GMT" + "Thu, 22 Oct 2015 12:38:02 GMT" ] }, "StatusCode": 200 @@ -4072,10 +4072,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4087,16 +4087,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14394" + "14902" ], "x-ms-request-id": [ - "97e7adc6-3d97-4329-8ada-a46163399465" + "ea258f65-de8f-42f0-9011-15c0f905e126" ], "x-ms-correlation-request-id": [ - "97e7adc6-3d97-4329-8ada-a46163399465" + "ea258f65-de8f-42f0-9011-15c0f905e126" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090837Z:97e7adc6-3d97-4329-8ada-a46163399465" + "NORTHEUROPE:20151022T123807Z:ea258f65-de8f-42f0-9011-15c0f905e126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4105,7 +4105,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:37 GMT" + "Thu, 22 Oct 2015 12:38:06 GMT" ] }, "StatusCode": 200 @@ -4120,10 +4120,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4135,16 +4135,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14392" + "14900" ], "x-ms-request-id": [ - "9ae5403f-fbe4-48fb-9075-128fe1ddee65" + "b717fe6c-59e5-493f-ae46-1ff7486ffe28" ], "x-ms-correlation-request-id": [ - "9ae5403f-fbe4-48fb-9075-128fe1ddee65" + "b717fe6c-59e5-493f-ae46-1ff7486ffe28" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090841Z:9ae5403f-fbe4-48fb-9075-128fe1ddee65" + "NORTHEUROPE:20151022T123811Z:b717fe6c-59e5-493f-ae46-1ff7486ffe28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4153,7 +4153,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:40 GMT" + "Thu, 22 Oct 2015 12:38:11 GMT" ] }, "StatusCode": 200 @@ -4168,10 +4168,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4183,16 +4183,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14390" + "14898" ], "x-ms-request-id": [ - "fbf0bd33-ea9e-45ea-adeb-578c43338e0a" + "06984317-2df9-404e-b848-5603b0a68162" ], "x-ms-correlation-request-id": [ - "fbf0bd33-ea9e-45ea-adeb-578c43338e0a" + "06984317-2df9-404e-b848-5603b0a68162" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090845Z:fbf0bd33-ea9e-45ea-adeb-578c43338e0a" + "NORTHEUROPE:20151022T123814Z:06984317-2df9-404e-b848-5603b0a68162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4201,7 +4201,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:44 GMT" + "Thu, 22 Oct 2015 12:38:14 GMT" ] }, "StatusCode": 200 @@ -4216,10 +4216,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:06:14.0234084Z\",\r\n \"duration\": \"PT4.0363318S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4231,16 +4231,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14388" + "14896" ], "x-ms-request-id": [ - "1419563a-4c2d-4927-a9de-c51d14edc2c3" + "dede79db-262c-4040-9aa0-8ab8fbb80684" ], "x-ms-correlation-request-id": [ - "1419563a-4c2d-4927-a9de-c51d14edc2c3" + "dede79db-262c-4040-9aa0-8ab8fbb80684" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090849Z:1419563a-4c2d-4927-a9de-c51d14edc2c3" + "NORTHEUROPE:20151022T123818Z:dede79db-262c-4040-9aa0-8ab8fbb80684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4249,7 +4249,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:48 GMT" + "Thu, 22 Oct 2015 12:38:18 GMT" ] }, "StatusCode": 200 @@ -4264,10 +4264,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:08:51.5155341Z\",\r\n \"duration\": \"PT2M41.5284575S\",\r\n \"correlationId\": \"b488d135-06e5-4b6c-97b8-a5f76dc6a770\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2568" + "2300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4279,16 +4279,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14385" + "14893" ], "x-ms-request-id": [ - "5334ebf7-226f-4a48-b7e8-3c0f93adf40e" + "6e16dbfc-52ec-4417-b777-77031625b4e7" ], "x-ms-correlation-request-id": [ - "5334ebf7-226f-4a48-b7e8-3c0f93adf40e" + "6e16dbfc-52ec-4417-b777-77031625b4e7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090853Z:5334ebf7-226f-4a48-b7e8-3c0f93adf40e" + "NORTHEUROPE:20151022T123822Z:6e16dbfc-52ec-4417-b777-77031625b4e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4297,316 +4297,1024 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:08:52 GMT" + "Thu, 22 Oct 2015 12:38:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "e69126e4-ecf9-4d51-81e0-622030cca4f9" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "452" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "e26b59e6-3cac-479f-a488-f4fe5cd34b22" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14384" + "14891" + ], + "x-ms-request-id": [ + "29739803-a2b5-4585-bb14-ee1f618ac5a5" ], "x-ms-correlation-request-id": [ - "bcf5f204-0065-4786-adc6-0fc5ed4e8e83" + "29739803-a2b5-4585-bb14-ee1f618ac5a5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090902Z:bcf5f204-0065-4786-adc6-0fc5ed4e8e83" + "NORTHEUROPE:20151022T123826Z:29739803-a2b5-4585-bb14-ee1f618ac5a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:01 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:38:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "7eb54e14-5345-41c6-b38c-eee416098e19" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "b3938367-e885-4a36-afab-3cee9e06f358" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14381" + "14889" + ], + "x-ms-request-id": [ + "adcfcec3-bbe3-435d-ad01-50327c696112" ], "x-ms-correlation-request-id": [ - "69c45362-1dc5-42b4-8d2d-a2769b59e555" + "adcfcec3-bbe3-435d-ad01-50327c696112" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090910Z:69c45362-1dc5-42b4-8d2d-a2769b59e555" + "NORTHEUROPE:20151022T123830Z:adcfcec3-bbe3-435d-ad01-50327c696112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:38:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "70b782fe-b2aa-4e26-81eb-9ada98e94d1f" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "6b360109-09d4-4ba9-8c35-0d9e7155162d" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14375" + "14887" + ], + "x-ms-request-id": [ + "8bc6d133-5ad6-466b-8be1-515c2c3bb173" ], "x-ms-correlation-request-id": [ - "4f3a46ed-161f-4865-bcc4-2d6c511aa4cc" + "8bc6d133-5ad6-466b-8be1-515c2c3bb173" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090926Z:4f3a46ed-161f-4865-bcc4-2d6c511aa4cc" + "NORTHEUROPE:20151022T123834Z:8bc6d133-5ad6-466b-8be1-515c2c3bb173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:26 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:38:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "e69126e4-ecf9-4d51-81e0-622030cca4f9" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "a56503a7-b3ed-46eb-9228-7ea02c844219" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "Preference-Applied": [ - "return-content" + "Expires": [ + "-1" ], - "DataServiceVersion": [ - "3.0;" + "Pragma": [ + "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-request-id": [ + "96f52755-f818-4454-a312-3177cd7be475" ], "x-ms-correlation-request-id": [ - "d1fea2d0-d6aa-4b87-9d0d-ca316d551675" + "96f52755-f818-4454-a312-3177cd7be475" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090904Z:d1fea2d0-d6aa-4b87-9d0d-ca316d551675" + "NORTHEUROPE:20151022T123838Z:96f52755-f818-4454-a312-3177cd7be475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:38:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "6caf61ea-e945-4948-be83-119086b1fdb6" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "ad74409a-255e-4a13-8a59-4c915731c712" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14383" + "14883" + ], + "x-ms-request-id": [ + "a86ee912-36cb-41e3-bcea-de330361c5dc" ], "x-ms-correlation-request-id": [ - "49240676-d8d0-4b6b-a4ff-58d0a0ddddea" + "a86ee912-36cb-41e3-bcea-de330361c5dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090906Z:49240676-d8d0-4b6b-a4ff-58d0a0ddddea" + "NORTHEUROPE:20151022T123842Z:a86ee912-36cb-41e3-bcea-de330361c5dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:06 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "7eb54e14-5345-41c6-b38c-eee416098e19" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2300" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "0c5244e2-43b7-47b3-b3c0-701525800ca7" + "application/json; charset=utf-8" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-request-id": [ + "72523939-d779-4b45-a725-76c6ae41025c" + ], + "x-ms-correlation-request-id": [ + "72523939-d779-4b45-a725-76c6ae41025c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123846Z:72523939-d779-4b45-a725-76c6ae41025c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:38:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:35:58.135851Z\",\r\n \"duration\": \"PT4.448057S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2300" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-request-id": [ + "3d02abdc-b940-4279-a8a8-06c7255d7947" + ], + "x-ms-correlation-request-id": [ + "3d02abdc-b940-4279-a8a8-06c7255d7947" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123850Z:3d02abdc-b940-4279-a8a8-06c7255d7947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:38:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db51792\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:38:52.1317876Z\",\r\n \"duration\": \"PT2M58.4439936S\",\r\n \"correlationId\": \"8ccc2953-b3a5-4347-a9dc-795c07a1a0ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server51792/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server51792/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-request-id": [ + "7122a69f-b19f-4c36-a215-839c307240a8" + ], + "x-ms-correlation-request-id": [ + "7122a69f-b19f-4c36-a215-839c307240a8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123854Z:7122a69f-b19f-4c36-a215-839c307240a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:38:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f77c17e-1a0d-42d0-b667-f9432bcb501b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ca968362-bd51-43be-a3d4-038c100be4f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "858ffbcf-9629-413b-83d1-7522447afccb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123901Z:858ffbcf-9629-413b-83d1-7522447afccb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f77c17e-1a0d-42d0-b667-f9432bcb501b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "59c136cd-e1e2-4911-8300-8264755d4a63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "b10be6ec-54fb-4604-8cd9-94ffc0bc7b3b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123906Z:b10be6ec-54fb-4604-8cd9-94ffc0bc7b3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "87f90311-1e52-421a-b0df-a6e4349d1371" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "93ec61d6-9e40-4b17-a1a4-b9224a5cb388" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "89278f7a-ac04-4185-944b-2ea12ebfebc7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123913Z:89278f7a-ac04-4185-944b-2ea12ebfebc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "87f90311-1e52-421a-b0df-a6e4349d1371" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "901c8227-2e47-4dc8-842c-461b81d617d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "39affa96-890f-44de-a76a-be842a49fda2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123913Z:39affa96-890f-44de-a76a-be842a49fda2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8e049fa8-3b0f-4288-a443-630cb9573417" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b82c079c-5fac-49a8-a679-f0ff6cd8da15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "beaa38aa-e590-4547-b62a-ea3d70ac1357" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123928Z:beaa38aa-e590-4547-b62a-ea3d70ac1357" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:27 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8e049fa8-3b0f-4288-a443-630cb9573417" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d8937586-f549-427a-a451-ad2b5230b756" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "701317b5-5491-4bbf-a404-eb44b02328e0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123928Z:701317b5-5491-4bbf-a404-eb44b02328e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "25e6f299-2aef-4886-b90f-dd629fe45a0d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server51792.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "9b58628b-69e2-4276-8101-3e48464d46f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "0f48bbab-bf79-4f9d-bfeb-f6b140a7436a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123943Z:0f48bbab-bf79-4f9d-bfeb-f6b140a7436a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f77c17e-1a0d-42d0-b667-f9432bcb501b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "452" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "dca6a433-a641-40e1-83fb-05e4102681c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "f0aff202-70c8-44a3-a6fb-4773271ce8c0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123906Z:f0aff202-70c8-44a3-a6fb-4773271ce8c0" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "87f90311-1e52-421a-b0df-a6e4349d1371" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "896cafe7-c47d-4977-a235-f43241661796" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "0e2cb405-1d4c-4800-8202-bd2ceb37ea08" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123915Z:0e2cb405-1d4c-4800-8202-bd2ceb37ea08" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8e049fa8-3b0f-4288-a443-630cb9573417" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "92ae684e-d13d-46a3-90a5-2e96f493df2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "cf059042-64f6-4f4e-bb78-3f2f7b2b8b95" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123931Z:cf059042-64f6-4f4e-bb78-3f2f7b2b8b95" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:30 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f77c17e-1a0d-42d0-b667-f9432bcb501b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "441" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "1e81fa95-6abb-41e8-bb81-676e9be4d22c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9ab6fdb7-5ec5-49f6-a875-3be024f32a10" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T123909Z:9ab6fdb7-5ec5-49f6-a875-3be024f32a10" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:39:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5a1d7e8d-6857-4637-bef9-4e2a106b9ea0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c9898420-e288-4b55-916d-7eba3c81f784" + ], + "X-Content-Type-Options": [ + "nosniff" ], "DataServiceVersion": [ "3.0;" @@ -4615,19 +5323,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14382" + "14965" ], "x-ms-correlation-request-id": [ - "4bdb2406-4cd5-4380-913c-1e2901fdd5d1" + "667f5bdb-5884-4386-8056-b93a0f1effd0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090908Z:4bdb2406-4cd5-4380-913c-1e2901fdd5d1" + "NORTHEUROPE:20151022T123911Z:667f5bdb-5884-4386-8056-b93a0f1effd0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:07 GMT" + "Thu, 22 Oct 2015 12:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4645,19 +5353,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9aec70a2-c941-46ce-9f3f-da3b3562288b" + "87f90311-1e52-421a-b0df-a6e4349d1371" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "608" + "12" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "97caeb55-3bac-4192-bff4-c8cbe026b3ac" + "a8035dbc-d323-4ebe-990d-5171d083f599" ], "X-Content-Type-Options": [ "nosniff" @@ -4669,19 +5377,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14380" + "14964" ], "x-ms-correlation-request-id": [ - "e22ecbf5-38ad-41d6-b391-b86a73fcd774" + "f77042fc-8d88-41ac-bff7-ee1d17eca0c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090917Z:e22ecbf5-38ad-41d6-b391-b86a73fcd774" + "NORTHEUROPE:20151022T123912Z:f77042fc-8d88-41ac-bff7-ee1d17eca0c2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:17 GMT" + "Thu, 22 Oct 2015 12:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4699,19 +5407,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "29dda10b-4295-4ad6-8184-a462bc3149a4" + "d3e7eac0-99dc-45a9-84c2-5b68ef5d5dea" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "608" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f650d7df-9e23-4b2a-a419-ee436e84e57b" + "9e288b49-7b83-42e9-b25b-35e929ba5044" ], "X-Content-Type-Options": [ "nosniff" @@ -4723,19 +5431,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14378" + "14960" ], "x-ms-correlation-request-id": [ - "45499f9f-d808-4961-9588-4a1e203f00a4" + "fd27f272-efe5-4f55-b783-ba6358767d0b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090920Z:45499f9f-d808-4961-9588-4a1e203f00a4" + "NORTHEUROPE:20151022T123921Z:fd27f272-efe5-4f55-b783-ba6358767d0b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:20 GMT" + "Thu, 22 Oct 2015 12:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4753,19 +5461,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70b782fe-b2aa-4e26-81eb-9ada98e94d1f" + "1c191f69-79d3-4241-b46c-d2f226088f0e" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "608" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a7129e7b-4762-4600-8ee5-43ec57d37853" + "58863fa2-9112-4589-bfee-a88ed1ae0969" ], "X-Content-Type-Options": [ "nosniff" @@ -4777,19 +5485,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14377" + "14959" ], "x-ms-correlation-request-id": [ - "06a8e9e4-a5aa-4446-8a30-6ac7f3d33087" + "9fbe9477-3888-4bd8-b2fb-e059669a29ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090923Z:06a8e9e4-a5aa-4446-8a30-6ac7f3d33087" + "NORTHEUROPE:20151022T123925Z:9fbe9477-3888-4bd8-b2fb-e059669a29ed" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:23 GMT" + "Thu, 22 Oct 2015 12:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4807,19 +5515,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e8a8758e-da42-48ad-a155-47c7c71ab472" + "8e049fa8-3b0f-4288-a443-630cb9573417" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "616" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0cfde676-d15c-4142-8eee-d59d8e6afe72" + "33121dcb-db4e-49c3-a369-d180429fcb2e" ], "X-Content-Type-Options": [ "nosniff" @@ -4831,19 +5539,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14373" + "14958" ], "x-ms-correlation-request-id": [ - "1a89092a-6678-4e9d-9a68-53c6b2112a89" + "f61a0fd8-bc27-4c79-974e-9107c343fdd2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090932Z:1a89092a-6678-4e9d-9a68-53c6b2112a89" + "NORTHEUROPE:20151022T123928Z:f61a0fd8-bc27-4c79-974e-9107c343fdd2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:32 GMT" + "Thu, 22 Oct 2015 12:39:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4861,19 +5569,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "10b6a7d8-5816-42f8-8b25-059be02290de" + "6f177817-f7e0-4ec6-80ea-395a16126dcf" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "616" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b8f1190d-6231-4d65-b1ae-0ddaf4b1aba8" + "89481893-0c2d-4af9-ada2-fc178807e456" ], "X-Content-Type-Options": [ "nosniff" @@ -4885,19 +5593,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14371" + "14954" ], "x-ms-correlation-request-id": [ - "f2ec9ea1-75d9-4719-941e-6dbfd4d56b8d" + "0b7b1af1-e189-4224-a650-90f5f90924e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090935Z:f2ec9ea1-75d9-4719-941e-6dbfd4d56b8d" + "NORTHEUROPE:20151022T123937Z:0b7b1af1-e189-4224-a650-90f5f90924e3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:35 GMT" + "Thu, 22 Oct 2015 12:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4915,19 +5623,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c3d16836-343c-4084-87ab-f993b634d64c" + "4bd08ef4-8864-463c-bc11-7610971157b0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "616" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "38e95136-3d08-4173-b0c5-2b08c05ac97f" + "a541010b-b1d0-4c9f-8539-8e39cabace25" ], "X-Content-Type-Options": [ "nosniff" @@ -4939,19 +5647,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14370" + "14953" ], "x-ms-correlation-request-id": [ - "17e4d4a4-f7da-4386-96c3-b500a2c08fcc" + "9be0e8fd-146f-4739-a93f-1b0a016f1f5e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090938Z:17e4d4a4-f7da-4386-96c3-b500a2c08fcc" + "NORTHEUROPE:20151022T123940Z:9be0e8fd-146f-4739-a93f-1b0a016f1f5e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:38 GMT" + "Thu, 22 Oct 2015 12:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4969,19 +5677,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d8739a9e-630b-479c-bbba-09b9eaa54059" + "25e6f299-2aef-4886-b90f-dd629fe45a0d" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6d6e39bf-db46-4eb1-9324-9a40abd88446" + "c1c4b7d3-e46e-4bba-83fb-a4bde89b219e" ], "X-Content-Type-Options": [ "nosniff" @@ -4993,19 +5701,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14369" + "14952" ], "x-ms-correlation-request-id": [ - "732fd4bc-f72f-4f31-9f26-598e3f1f2064" + "9e46d15d-d468-4968-81ab-2b7d0b90038c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090946Z:732fd4bc-f72f-4f31-9f26-598e3f1f2064" + "NORTHEUROPE:20151022T123943Z:9e46d15d-d468-4968-81ab-2b7d0b90038c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:46 GMT" + "Thu, 22 Oct 2015 12:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5023,7 +5731,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4fa89066-0e1d-4dc9-8863-e7ea743604b7" + "13e9cde0-fb69-4530-9e59-02cfd5495822" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -5035,7 +5743,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "445656ff-1df2-4c6c-8749-b421871dcf08" + "27927bfb-4391-4785-9996-9ce9f1eaf4ae" ], "X-Content-Type-Options": [ "nosniff" @@ -5047,19 +5755,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14367" + "14950" ], "x-ms-correlation-request-id": [ - "0d7151e8-b952-4d45-9974-639b6780eadf" + "2c20aca4-1f9b-4998-a9bf-7ebe91737a37" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090948Z:0d7151e8-b952-4d45-9974-639b6780eadf" + "NORTHEUROPE:20151022T123951Z:2c20aca4-1f9b-4998-a9bf-7ebe91737a37" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:48 GMT" + "Thu, 22 Oct 2015 12:39:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5068,34 +5776,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbkludD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "259" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7eb54e14-5345-41c6-b38c-eee416098e19" + "87f90311-1e52-421a-b0df-a6e4349d1371" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a\",\r\n \"name\": \"rule1a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt\",\r\n \"name\": \"dbo_table1_columnInt\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "599" + "641" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3741c0ba-e1c5-408e-90e6-1d6545cef6ee" + "22ebb28c-9e05-407b-b85f-1a38538eeec2" ], "X-Content-Type-Options": [ "nosniff" @@ -5110,19 +5818,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-correlation-request-id": [ - "51d1f68b-2e38-40d6-a9cf-4148a87c76b5" + "b4b37097-72b6-4042-bcd4-c14df934b903" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090912Z:51d1f68b-2e38-40d6-a9cf-4148a87c76b5" + "NORTHEUROPE:20151022T123918Z:b4b37097-72b6-4042-bcd4-c14df934b903" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:11 GMT" + "Thu, 22 Oct 2015 12:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5131,34 +5839,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbkludD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "253" + "259" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70b782fe-b2aa-4e26-81eb-9ada98e94d1f" + "8e049fa8-3b0f-4288-a443-630cb9573417" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a\",\r\n \"name\": \"rule1a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt\",\r\n \"name\": \"dbo_table1_columnInt\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "607" + "641" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7485dd4d-9c0f-4a0d-b93d-1ec5b553d114" + "f44fe238-fd22-4089-9dd3-548fd56b4d84" ], "X-Content-Type-Options": [ "nosniff" @@ -5173,19 +5881,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-correlation-request-id": [ - "69e13b2f-c2e2-47d1-8430-278fecf201de" + "f7ed5f81-5df0-4eaa-92d7-4883de037c88" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090930Z:69e13b2f-c2e2-47d1-8430-278fecf201de" + "NORTHEUROPE:20151022T123934Z:f7ed5f81-5df0-4eaa-92d7-4883de037c88" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:29 GMT" + "Thu, 22 Oct 2015 12:39:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5194,34 +5902,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbkludD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "254" + "260" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c3d16836-343c-4084-87ab-f993b634d64c" + "25e6f299-2aef-4886-b90f-dd629fe45a0d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a\",\r\n \"name\": \"rule1a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1a\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"columnFloat\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt\",\r\n \"name\": \"dbo_table1_columnInt\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_columnInt\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"columnInt\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"15\",\r\n \"numberTo\": \"34\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "608" + "642" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cb881991-f9b6-4183-a420-4de4630fcb85" + "bca78364-7016-4f6e-8eeb-0ce96267e963" ], "X-Content-Type-Options": [ "nosniff" @@ -5236,19 +5944,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1196" ], "x-ms-correlation-request-id": [ - "d387c121-512a-4a0b-8c45-c86fe7cf14db" + "eaa0b10f-ac2f-4235-93f9-83187e6fb65f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090941Z:d387c121-512a-4a0b-8c45-c86fe7cf14db" + "NORTHEUROPE:20151022T123947Z:eaa0b10f-ac2f-4235-93f9-83187e6fb65f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:41 GMT" + "Thu, 22 Oct 2015 12:39:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5257,8 +5965,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/rule1a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792/databases/sql-dm-cmdlet-db51792/dataMaskingPolicies/Default/rules/dbo_table1_columnInt?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MTc5Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUxNzkyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbkludD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5266,7 +5974,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c3d16836-343c-4084-87ab-f993b634d64c" + "25e6f299-2aef-4886-b90f-dd629fe45a0d" ] }, "ResponseBody": "", @@ -5278,7 +5986,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "f7239964-a8e2-4c54-b818-2946c3954d25" + "23420eea-cbc0-45a2-94d0-de3f6c69d828" ], "X-Content-Type-Options": [ "nosniff" @@ -5290,19 +5998,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-correlation-request-id": [ - "7d69b798-6355-4b27-90d1-86d80a6b82a0" + "a7e49520-31a9-4f5b-8549-f2bb57446fd4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T090944Z:7d69b798-6355-4b27-90d1-86d80a6b82a0" + "NORTHEUROPE:20151022T123949Z:a7e49520-31a9-4f5b-8549-f2bb57446fd4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:09:44 GMT" + "Thu, 22 Oct 2015 12:39:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationWithoutPolicy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationWithoutPolicy.json index 9e9a411d3b90..54f7ce32902f 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationWithoutPolicy.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationWithoutPolicy.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14554" + "14935" ], "x-ms-request-id": [ - "eb091a1c-95c0-4450-93cd-3a5bdac23e37" + "6724d053-46a9-45f3-8109-8d5847781c23" ], "x-ms-correlation-request-id": [ - "eb091a1c-95c0-4450-93cd-3a5bdac23e37" + "6724d053-46a9-45f3-8109-8d5847781c23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092018Z:eb091a1c-95c0-4450-93cd-3a5bdac23e37" + "NORTHEUROPE:20151022T123110Z:6724d053-46a9-45f3-8109-8d5847781c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:17 GMT" + "Thu, 22 Oct 2015 12:31:09 GMT" ] }, "StatusCode": 404 @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "67a00cee-efa2-44b3-b6ff-92234efa55ea" + "02e3dee2-8613-45ee-90d8-3ac955b7c1d7" ], "x-ms-correlation-request-id": [ - "67a00cee-efa2-44b3-b6ff-92234efa55ea" + "02e3dee2-8613-45ee-90d8-3ac955b7c1d7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092022Z:67a00cee-efa2-44b3-b6ff-92234efa55ea" + "NORTHEUROPE:20151022T123114Z:02e3dee2-8613-45ee-90d8-3ac955b7c1d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:21 GMT" + "Thu, 22 Oct 2015 12:31:13 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14551" + "14934" ], "x-ms-request-id": [ - "6f38217b-a7e4-4c15-9cdf-8e080de0e001" + "db02bbde-1818-46fe-8d1e-fca34dfe386a" ], "x-ms-correlation-request-id": [ - "6f38217b-a7e4-4c15-9cdf-8e080de0e001" + "db02bbde-1818-46fe-8d1e-fca34dfe386a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092022Z:6f38217b-a7e4-4c15-9cdf-8e080de0e001" + "NORTHEUROPE:20151022T123114Z:db02bbde-1818-46fe-8d1e-fca34dfe386a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:21 GMT" + "Thu, 22 Oct 2015 12:31:14 GMT" ] }, "StatusCode": 200 @@ -178,7 +178,7 @@ "no-cache" ], "x-ms-request-id": [ - "b8687d48-064d-4e99-b3ee-02fdb14cd416" + "98d2a5a1-9aa8-48d3-9d12-a7da8413ee1d" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_1" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14618" + "14892" ], "x-ms-correlation-request-id": [ - "44ee088b-352c-41cf-8539-6109314f2541" + "42a8ae24-293a-4208-b7b1-0d1a09d26328" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092022Z:44ee088b-352c-41cf-8539-6109314f2541" + "NORTHEUROPE:20151022T123115Z:42a8ae24-293a-4208-b7b1-0d1a09d26328" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:22 GMT" + "Thu, 22 Oct 2015 12:31:14 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -232,7 +232,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-14T09:20:27.7877043Z\",\r\n \"duration\": \"PT3.5104781S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-22T12:31:20.0187897Z\",\r\n \"duration\": \"PT3.3276024S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2320" @@ -250,13 +250,13 @@ "1198" ], "x-ms-request-id": [ - "dfbbec5a-0c0d-4836-9081-e0d389d58dd9" + "fabf6ce1-6258-4769-b227-bfcd8eca5574" ], "x-ms-correlation-request-id": [ - "dfbbec5a-0c0d-4836-9081-e0d389d58dd9" + "fabf6ce1-6258-4769-b227-bfcd8eca5574" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092029Z:dfbbec5a-0c0d-4836-9081-e0d389d58dd9" + "NORTHEUROPE:20151022T123121Z:fabf6ce1-6258-4769-b227-bfcd8eca5574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:28 GMT" + "Thu, 22 Oct 2015 12:31:21 GMT" ] }, "StatusCode": 201 @@ -295,16 +295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14549" + "14933" ], "x-ms-request-id": [ - "e8fe9bfc-6376-4857-8cd3-f2ef3c8790dd" + "64048e4a-d4c1-440a-b7e0-9cf952b7ef5d" ], "x-ms-correlation-request-id": [ - "e8fe9bfc-6376-4857-8cd3-f2ef3c8790dd" + "64048e4a-d4c1-440a-b7e0-9cf952b7ef5d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092030Z:e8fe9bfc-6376-4857-8cd3-f2ef3c8790dd" + "NORTHEUROPE:20151022T123123Z:64048e4a-d4c1-440a-b7e0-9cf952b7ef5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,7 +313,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:30 GMT" + "Thu, 22 Oct 2015 12:31:22 GMT" ] }, "StatusCode": 200 @@ -343,16 +343,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14546" + "14931" ], "x-ms-request-id": [ - "67812249-a157-47f6-8e59-bc73b5712fe6" + "a60b72af-dbfa-4061-a45d-d16a3e256b8f" ], "x-ms-correlation-request-id": [ - "67812249-a157-47f6-8e59-bc73b5712fe6" + "a60b72af-dbfa-4061-a45d-d16a3e256b8f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092034Z:67812249-a157-47f6-8e59-bc73b5712fe6" + "NORTHEUROPE:20151022T123126Z:a60b72af-dbfa-4061-a45d-d16a3e256b8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,7 +361,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:33 GMT" + "Thu, 22 Oct 2015 12:31:26 GMT" ] }, "StatusCode": 200 @@ -391,16 +391,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14543" + "14929" ], "x-ms-request-id": [ - "c331606e-9567-4a4d-9a41-3714dc0071bf" + "1321eaeb-6393-4415-8c47-be14bdafb863" ], "x-ms-correlation-request-id": [ - "c331606e-9567-4a4d-9a41-3714dc0071bf" + "1321eaeb-6393-4415-8c47-be14bdafb863" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092037Z:c331606e-9567-4a4d-9a41-3714dc0071bf" + "NORTHEUROPE:20151022T123130Z:1321eaeb-6393-4415-8c47-be14bdafb863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,7 +409,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:37 GMT" + "Thu, 22 Oct 2015 12:31:30 GMT" ] }, "StatusCode": 200 @@ -439,16 +439,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14540" + "14927" ], "x-ms-request-id": [ - "f8760358-b84d-40ec-b1a5-d0235ffa1880" + "d2c899bc-24e6-45e3-b5d9-bc719cb24bc7" ], "x-ms-correlation-request-id": [ - "f8760358-b84d-40ec-b1a5-d0235ffa1880" + "d2c899bc-24e6-45e3-b5d9-bc719cb24bc7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092041Z:f8760358-b84d-40ec-b1a5-d0235ffa1880" + "NORTHEUROPE:20151022T123134Z:d2c899bc-24e6-45e3-b5d9-bc719cb24bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,7 +457,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:41 GMT" + "Thu, 22 Oct 2015 12:31:34 GMT" ] }, "StatusCode": 200 @@ -487,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" + "14925" ], "x-ms-request-id": [ - "f0b9b785-30f3-47de-b54a-378524499c26" + "56aac554-42a8-467f-ad0b-4bf21e61ffab" ], "x-ms-correlation-request-id": [ - "f0b9b785-30f3-47de-b54a-378524499c26" + "56aac554-42a8-467f-ad0b-4bf21e61ffab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092045Z:f0b9b785-30f3-47de-b54a-378524499c26" + "NORTHEUROPE:20151022T123137Z:56aac554-42a8-467f-ad0b-4bf21e61ffab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +505,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:45 GMT" + "Thu, 22 Oct 2015 12:31:37 GMT" ] }, "StatusCode": 200 @@ -535,16 +535,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" + "14923" ], "x-ms-request-id": [ - "5b5b9573-0d2d-4666-a22d-4dc372eabc57" + "23514b5b-2fee-417c-89b6-ce5db237d906" ], "x-ms-correlation-request-id": [ - "5b5b9573-0d2d-4666-a22d-4dc372eabc57" + "23514b5b-2fee-417c-89b6-ce5db237d906" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092049Z:5b5b9573-0d2d-4666-a22d-4dc372eabc57" + "NORTHEUROPE:20151022T123141Z:23514b5b-2fee-417c-89b6-ce5db237d906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +553,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:48 GMT" + "Thu, 22 Oct 2015 12:31:40 GMT" ] }, "StatusCode": 200 @@ -583,16 +583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" + "14921" ], "x-ms-request-id": [ - "d9673e08-ca35-4c84-9773-87ab4a1e72db" + "d0975d4c-e335-438c-98b3-428fa418075b" ], "x-ms-correlation-request-id": [ - "d9673e08-ca35-4c84-9773-87ab4a1e72db" + "d0975d4c-e335-438c-98b3-428fa418075b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092053Z:d9673e08-ca35-4c84-9773-87ab4a1e72db" + "NORTHEUROPE:20151022T123145Z:d0975d4c-e335-438c-98b3-428fa418075b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,7 +601,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:52 GMT" + "Thu, 22 Oct 2015 12:31:45 GMT" ] }, "StatusCode": 200 @@ -631,16 +631,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14529" + "14919" ], "x-ms-request-id": [ - "8c1dc3d6-8137-4f35-8f50-23bdfb4e83e8" + "ec9355bf-8afb-4b29-8f38-5b2a10a6d5c6" ], "x-ms-correlation-request-id": [ - "8c1dc3d6-8137-4f35-8f50-23bdfb4e83e8" + "ec9355bf-8afb-4b29-8f38-5b2a10a6d5c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092056Z:8c1dc3d6-8137-4f35-8f50-23bdfb4e83e8" + "NORTHEUROPE:20151022T123148Z:ec9355bf-8afb-4b29-8f38-5b2a10a6d5c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +649,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:56 GMT" + "Thu, 22 Oct 2015 12:31:48 GMT" ] }, "StatusCode": 200 @@ -679,16 +679,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14527" + "14917" ], "x-ms-request-id": [ - "7c87e3f2-2ae7-4601-a825-ff3a6c50778b" + "3f4fa7c1-253d-46e8-b9bf-0be1bdf1c9e7" ], "x-ms-correlation-request-id": [ - "7c87e3f2-2ae7-4601-a825-ff3a6c50778b" + "3f4fa7c1-253d-46e8-b9bf-0be1bdf1c9e7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092100Z:7c87e3f2-2ae7-4601-a825-ff3a6c50778b" + "NORTHEUROPE:20151022T123152Z:3f4fa7c1-253d-46e8-b9bf-0be1bdf1c9e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +697,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:00 GMT" + "Thu, 22 Oct 2015 12:31:51 GMT" ] }, "StatusCode": 200 @@ -727,16 +727,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14524" + "14915" ], "x-ms-request-id": [ - "86e2bfb8-fa9b-4bb1-8cb2-0d24c0f18944" + "bb130290-dff2-47fa-a24c-88f756bca974" ], "x-ms-correlation-request-id": [ - "86e2bfb8-fa9b-4bb1-8cb2-0d24c0f18944" + "bb130290-dff2-47fa-a24c-88f756bca974" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092104Z:86e2bfb8-fa9b-4bb1-8cb2-0d24c0f18944" + "NORTHEUROPE:20151022T123156Z:bb130290-dff2-47fa-a24c-88f756bca974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,7 +745,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:03 GMT" + "Thu, 22 Oct 2015 12:31:55 GMT" ] }, "StatusCode": 200 @@ -775,16 +775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14522" + "14913" ], "x-ms-request-id": [ - "09822923-c264-4d26-bd3a-4630ebd7bf35" + "c8667935-4285-4f2f-a39e-2114dd59d66d" ], "x-ms-correlation-request-id": [ - "09822923-c264-4d26-bd3a-4630ebd7bf35" + "c8667935-4285-4f2f-a39e-2114dd59d66d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092108Z:09822923-c264-4d26-bd3a-4630ebd7bf35" + "NORTHEUROPE:20151022T123159Z:c8667935-4285-4f2f-a39e-2114dd59d66d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +793,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:07 GMT" + "Thu, 22 Oct 2015 12:31:59 GMT" ] }, "StatusCode": 200 @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14520" + "14911" ], "x-ms-request-id": [ - "39028078-81d7-44cd-9542-b9832587f3c3" + "b2c3e680-1e54-4d88-a76e-14f731f652a2" ], "x-ms-correlation-request-id": [ - "39028078-81d7-44cd-9542-b9832587f3c3" + "b2c3e680-1e54-4d88-a76e-14f731f652a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092112Z:39028078-81d7-44cd-9542-b9832587f3c3" + "NORTHEUROPE:20151022T123203Z:b2c3e680-1e54-4d88-a76e-14f731f652a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:11 GMT" + "Thu, 22 Oct 2015 12:32:03 GMT" ] }, "StatusCode": 200 @@ -871,16 +871,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14518" + "14909" ], "x-ms-request-id": [ - "490d36c4-8284-41a6-b92a-246b731cf607" + "09e1a46b-8a68-4237-a2da-e3b386b5591e" ], "x-ms-correlation-request-id": [ - "490d36c4-8284-41a6-b92a-246b731cf607" + "09e1a46b-8a68-4237-a2da-e3b386b5591e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092115Z:490d36c4-8284-41a6-b92a-246b731cf607" + "NORTHEUROPE:20151022T123207Z:09e1a46b-8a68-4237-a2da-e3b386b5591e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +889,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:14 GMT" + "Thu, 22 Oct 2015 12:32:06 GMT" ] }, "StatusCode": 200 @@ -919,16 +919,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14516" + "14907" ], "x-ms-request-id": [ - "26496d74-cf1c-4715-b1fa-fe5a9deca431" + "c5500119-dbd5-4367-ba78-cb5868beff62" ], "x-ms-correlation-request-id": [ - "26496d74-cf1c-4715-b1fa-fe5a9deca431" + "c5500119-dbd5-4367-ba78-cb5868beff62" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092119Z:26496d74-cf1c-4715-b1fa-fe5a9deca431" + "NORTHEUROPE:20151022T123210Z:c5500119-dbd5-4367-ba78-cb5868beff62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,7 +937,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:18 GMT" + "Thu, 22 Oct 2015 12:32:09 GMT" ] }, "StatusCode": 200 @@ -967,16 +967,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" + "14905" ], "x-ms-request-id": [ - "695fe9f2-a224-4251-82c6-2cff43e14366" + "fb343b98-1343-4aa1-8f8b-a5b5948c5e15" ], "x-ms-correlation-request-id": [ - "695fe9f2-a224-4251-82c6-2cff43e14366" + "fb343b98-1343-4aa1-8f8b-a5b5948c5e15" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092123Z:695fe9f2-a224-4251-82c6-2cff43e14366" + "NORTHEUROPE:20151022T123214Z:fb343b98-1343-4aa1-8f8b-a5b5948c5e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,7 +985,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:23 GMT" + "Thu, 22 Oct 2015 12:32:14 GMT" ] }, "StatusCode": 200 @@ -1015,16 +1015,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" + "14903" ], "x-ms-request-id": [ - "6f26ddcc-a579-4907-8822-566f71312bb1" + "bf33636c-1912-4e86-8783-0f3a34cad5d2" ], "x-ms-correlation-request-id": [ - "6f26ddcc-a579-4907-8822-566f71312bb1" + "bf33636c-1912-4e86-8783-0f3a34cad5d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092127Z:6f26ddcc-a579-4907-8822-566f71312bb1" + "NORTHEUROPE:20151022T123218Z:bf33636c-1912-4e86-8783-0f3a34cad5d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +1033,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:27 GMT" + "Thu, 22 Oct 2015 12:32:17 GMT" ] }, "StatusCode": 200 @@ -1063,16 +1063,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14507" + "14901" ], "x-ms-request-id": [ - "4fe67cba-c7b3-494d-a68a-cb0b3e7a3deb" + "5d5f6301-6b20-4d2c-8a19-ce46794235aa" ], "x-ms-correlation-request-id": [ - "4fe67cba-c7b3-494d-a68a-cb0b3e7a3deb" + "5d5f6301-6b20-4d2c-8a19-ce46794235aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092130Z:4fe67cba-c7b3-494d-a68a-cb0b3e7a3deb" + "NORTHEUROPE:20151022T123221Z:5d5f6301-6b20-4d2c-8a19-ce46794235aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1081,7 +1081,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:30 GMT" + "Thu, 22 Oct 2015 12:32:20 GMT" ] }, "StatusCode": 200 @@ -1096,442 +1096,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14505" - ], - "x-ms-request-id": [ - "cd512c8a-d50d-4766-8f3b-b7adb2be83fb" - ], - "x-ms-correlation-request-id": [ - "cd512c8a-d50d-4766-8f3b-b7adb2be83fb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092134Z:cd512c8a-d50d-4766-8f3b-b7adb2be83fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "667" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14503" - ], - "x-ms-request-id": [ - "611ee825-2bd3-498a-b13d-e8a0995de882" - ], - "x-ms-correlation-request-id": [ - "611ee825-2bd3-498a-b13d-e8a0995de882" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092138Z:611ee825-2bd3-498a-b13d-e8a0995de882" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1397" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14501" - ], - "x-ms-request-id": [ - "36af0ad0-7b74-4566-a4f0-9a641d69b906" - ], - "x-ms-correlation-request-id": [ - "36af0ad0-7b74-4566-a4f0-9a641d69b906" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092142Z:36af0ad0-7b74-4566-a4f0-9a641d69b906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14498" - ], - "x-ms-request-id": [ - "78ca522b-5c56-4cb9-ab96-ff4d4a4ff47a" - ], - "x-ms-correlation-request-id": [ - "78ca522b-5c56-4cb9-ab96-ff4d4a4ff47a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092146Z:78ca522b-5c56-4cb9-ab96-ff4d4a4ff47a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14496" - ], - "x-ms-request-id": [ - "0dce1a32-e293-4ab9-a3f0-4e0e0f9aa7f1" - ], - "x-ms-correlation-request-id": [ - "0dce1a32-e293-4ab9-a3f0-4e0e0f9aa7f1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092150Z:0dce1a32-e293-4ab9-a3f0-4e0e0f9aa7f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" - ], - "x-ms-request-id": [ - "b9902faf-3d0d-4fd8-92ab-9d1d13a156f4" - ], - "x-ms-correlation-request-id": [ - "b9902faf-3d0d-4fd8-92ab-9d1d13a156f4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092155Z:b9902faf-3d0d-4fd8-92ab-9d1d13a156f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14492" - ], - "x-ms-request-id": [ - "02546627-5ec8-4bf4-9412-399fce36f411" - ], - "x-ms-correlation-request-id": [ - "02546627-5ec8-4bf4-9412-399fce36f411" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092159Z:02546627-5ec8-4bf4-9412-399fce36f411" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:21:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14490" - ], - "x-ms-request-id": [ - "4adad784-ffcd-4808-8c4a-9c852189258d" - ], - "x-ms-correlation-request-id": [ - "4adad784-ffcd-4808-8c4a-9c852189258d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092203Z:4adad784-ffcd-4808-8c4a-9c852189258d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:22:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2116" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14488" - ], - "x-ms-request-id": [ - "6da3f18f-ca3b-4479-aabd-3dcce2e9bb8f" - ], - "x-ms-correlation-request-id": [ - "6da3f18f-ca3b-4479-aabd-3dcce2e9bb8f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092207Z:6da3f18f-ca3b-4479-aabd-3dcce2e9bb8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:22:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1543,16 +1111,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14486" + "14899" ], "x-ms-request-id": [ - "9704711f-7ed3-47b1-9d5e-ea9f29f23841" + "923d484c-2f0b-4d4b-994a-82d13a5ffd00" ], "x-ms-correlation-request-id": [ - "9704711f-7ed3-47b1-9d5e-ea9f29f23841" + "923d484c-2f0b-4d4b-994a-82d13a5ffd00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092211Z:9704711f-7ed3-47b1-9d5e-ea9f29f23841" + "NORTHEUROPE:20151022T123225Z:923d484c-2f0b-4d4b-994a-82d13a5ffd00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1561,7 +1129,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:10 GMT" + "Thu, 22 Oct 2015 12:32:25 GMT" ] }, "StatusCode": 200 @@ -1576,10 +1144,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:21:43.5307867Z\",\r\n \"duration\": \"PT8.1153789S\",\r\n \"trackingId\": \"d36bf464-7f18-403c-817c-bcde8837d982\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "667" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1591,16 +1159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14483" + "14897" ], "x-ms-request-id": [ - "94838002-b91c-4b5a-9b78-ca44152bb2a4" + "cc21690d-3c0a-4c9b-9368-0f195b94e63d" ], "x-ms-correlation-request-id": [ - "94838002-b91c-4b5a-9b78-ca44152bb2a4" + "cc21690d-3c0a-4c9b-9368-0f195b94e63d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092215Z:94838002-b91c-4b5a-9b78-ca44152bb2a4" + "NORTHEUROPE:20151022T123229Z:cc21690d-3c0a-4c9b-9368-0f195b94e63d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1609,7 +1177,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:14 GMT" + "Thu, 22 Oct 2015 12:32:28 GMT" ] }, "StatusCode": 200 @@ -1624,10 +1192,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:15.9915088Z\",\r\n \"duration\": \"PT40.576101S\",\r\n \"trackingId\": \"98af90aa-6027-4779-8528-4cd20d9adad3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "1397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,16 +1207,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14481" + "14895" ], "x-ms-request-id": [ - "5660fa67-f6d8-423f-ba93-13f29d03b8b5" + "7bc0e3d8-35a9-4a4c-8ecd-f661f5e2266b" ], "x-ms-correlation-request-id": [ - "5660fa67-f6d8-423f-ba93-13f29d03b8b5" + "7bc0e3d8-35a9-4a4c-8ecd-f661f5e2266b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092219Z:5660fa67-f6d8-423f-ba93-13f29d03b8b5" + "NORTHEUROPE:20151022T123233Z:7bc0e3d8-35a9-4a4c-8ecd-f661f5e2266b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1657,7 +1225,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:18 GMT" + "Thu, 22 Oct 2015 12:32:32 GMT" ] }, "StatusCode": 200 @@ -1672,10 +1240,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:15.9915088Z\",\r\n \"duration\": \"PT40.576101S\",\r\n \"trackingId\": \"98af90aa-6027-4779-8528-4cd20d9adad3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1687,16 +1255,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14479" + "14893" ], "x-ms-request-id": [ - "1bfbf8f6-b601-42f4-b4f6-9d915c0fed08" + "02c83b2e-fbac-4e5c-84e1-458bca5adee5" ], "x-ms-correlation-request-id": [ - "1bfbf8f6-b601-42f4-b4f6-9d915c0fed08" + "02c83b2e-fbac-4e5c-84e1-458bca5adee5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092223Z:1bfbf8f6-b601-42f4-b4f6-9d915c0fed08" + "NORTHEUROPE:20151022T123237Z:02c83b2e-fbac-4e5c-84e1-458bca5adee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1705,7 +1273,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:22 GMT" + "Thu, 22 Oct 2015 12:32:37 GMT" ] }, "StatusCode": 200 @@ -1720,10 +1288,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:15.9915088Z\",\r\n \"duration\": \"PT40.576101S\",\r\n \"trackingId\": \"98af90aa-6027-4779-8528-4cd20d9adad3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1735,16 +1303,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14476" + "14891" ], "x-ms-request-id": [ - "09c62da7-106b-4306-b01c-a0b13662e746" + "23f4b5be-f95b-4afb-91f0-0a3d62fb3f10" ], "x-ms-correlation-request-id": [ - "09c62da7-106b-4306-b01c-a0b13662e746" + "23f4b5be-f95b-4afb-91f0-0a3d62fb3f10" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092227Z:09c62da7-106b-4306-b01c-a0b13662e746" + "NORTHEUROPE:20151022T123241Z:23f4b5be-f95b-4afb-91f0-0a3d62fb3f10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,7 +1321,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:27 GMT" + "Thu, 22 Oct 2015 12:32:41 GMT" ] }, "StatusCode": 200 @@ -1768,10 +1336,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:15.9915088Z\",\r\n \"duration\": \"PT40.576101S\",\r\n \"trackingId\": \"98af90aa-6027-4779-8528-4cd20d9adad3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2116" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1783,16 +1351,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14474" + "14889" ], "x-ms-request-id": [ - "bedb8ec2-9147-4c30-842f-d43dec001135" + "0f413025-afd1-4459-8aef-0b455fdafb7c" ], "x-ms-correlation-request-id": [ - "bedb8ec2-9147-4c30-842f-d43dec001135" + "0f413025-afd1-4459-8aef-0b455fdafb7c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092231Z:bedb8ec2-9147-4c30-842f-d43dec001135" + "NORTHEUROPE:20151022T123245Z:0f413025-afd1-4459-8aef-0b455fdafb7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1801,7 +1369,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:31 GMT" + "Thu, 22 Oct 2015 12:32:45 GMT" ] }, "StatusCode": 200 @@ -1816,7 +1384,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:34.1610061Z\",\r\n \"duration\": \"PT58.7455983S\",\r\n \"trackingId\": \"6be12509-b0f3-4279-8ba3-730b5fbf19ab\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2117" @@ -1831,16 +1399,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14471" + "14887" ], "x-ms-request-id": [ - "f6c68637-7eae-4bb6-a1c3-20f77b211f21" + "82d713ce-d0e8-4704-8df7-8b989de9c6fe" ], "x-ms-correlation-request-id": [ - "f6c68637-7eae-4bb6-a1c3-20f77b211f21" + "82d713ce-d0e8-4704-8df7-8b989de9c6fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092235Z:f6c68637-7eae-4bb6-a1c3-20f77b211f21" + "NORTHEUROPE:20151022T123250Z:82d713ce-d0e8-4704-8df7-8b989de9c6fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1849,7 +1417,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:35 GMT" + "Thu, 22 Oct 2015 12:32:49 GMT" ] }, "StatusCode": 200 @@ -1864,7 +1432,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:34.1610061Z\",\r\n \"duration\": \"PT58.7455983S\",\r\n \"trackingId\": \"6be12509-b0f3-4279-8ba3-730b5fbf19ab\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2117" @@ -1879,16 +1447,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14468" + "14885" ], "x-ms-request-id": [ - "0d721a66-e1b0-4b13-bf85-fab68b151973" + "2a6655d5-f4f4-4492-9f2b-d682c9067a59" ], "x-ms-correlation-request-id": [ - "0d721a66-e1b0-4b13-bf85-fab68b151973" + "2a6655d5-f4f4-4492-9f2b-d682c9067a59" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092240Z:0d721a66-e1b0-4b13-bf85-fab68b151973" + "NORTHEUROPE:20151022T123254Z:2a6655d5-f4f4-4492-9f2b-d682c9067a59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,7 +1465,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:39 GMT" + "Thu, 22 Oct 2015 12:32:53 GMT" ] }, "StatusCode": 200 @@ -1912,7 +1480,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:34.1610061Z\",\r\n \"duration\": \"PT58.7455983S\",\r\n \"trackingId\": \"6be12509-b0f3-4279-8ba3-730b5fbf19ab\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2117" @@ -1927,16 +1495,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14466" + "14883" ], "x-ms-request-id": [ - "f2373dea-2dd8-4acb-9be3-e9bc05341e75" + "b16fe4db-02d0-4979-8edb-4f04067338c2" ], "x-ms-correlation-request-id": [ - "f2373dea-2dd8-4acb-9be3-e9bc05341e75" + "b16fe4db-02d0-4979-8edb-4f04067338c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092244Z:f2373dea-2dd8-4acb-9be3-e9bc05341e75" + "NORTHEUROPE:20151022T123258Z:b16fe4db-02d0-4979-8edb-4f04067338c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1945,7 +1513,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:43 GMT" + "Thu, 22 Oct 2015 12:32:57 GMT" ] }, "StatusCode": 200 @@ -1960,7 +1528,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:34.1610061Z\",\r\n \"duration\": \"PT58.7455983S\",\r\n \"trackingId\": \"6be12509-b0f3-4279-8ba3-730b5fbf19ab\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2117" @@ -1975,16 +1543,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14464" + "14881" ], "x-ms-request-id": [ - "1cab9ec0-a57c-4086-a02d-a71891a10834" + "a3082b15-dd6e-44d3-8c7c-ec35567f5058" ], "x-ms-correlation-request-id": [ - "1cab9ec0-a57c-4086-a02d-a71891a10834" + "a3082b15-dd6e-44d3-8c7c-ec35567f5058" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092248Z:1cab9ec0-a57c-4086-a02d-a71891a10834" + "NORTHEUROPE:20151022T123302Z:a3082b15-dd6e-44d3-8c7c-ec35567f5058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1993,7 +1561,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:47 GMT" + "Thu, 22 Oct 2015 12:33:02 GMT" ] }, "StatusCode": 200 @@ -2008,7 +1576,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:34.1610061Z\",\r\n \"duration\": \"PT58.7455983S\",\r\n \"trackingId\": \"6be12509-b0f3-4279-8ba3-730b5fbf19ab\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:32:36.4335188Z\",\r\n \"duration\": \"PT11.7967344S\",\r\n \"trackingId\": \"97642a26-1317-4b86-be4a-1777cb5a908d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2117" @@ -2023,16 +1591,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14462" + "14879" ], "x-ms-request-id": [ - "33ad5b5f-8ee8-4a76-bab0-c429280bdd5a" + "2418ef5f-e8b4-43b9-9b9c-00f6eca42f66" ], "x-ms-correlation-request-id": [ - "33ad5b5f-8ee8-4a76-bab0-c429280bdd5a" + "2418ef5f-e8b4-43b9-9b9c-00f6eca42f66" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092252Z:33ad5b5f-8ee8-4a76-bab0-c429280bdd5a" + "NORTHEUROPE:20151022T123306Z:2418ef5f-e8b4-43b9-9b9c-00f6eca42f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2041,7 +1609,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:51 GMT" + "Thu, 22 Oct 2015 12:33:05 GMT" ] }, "StatusCode": 200 @@ -2056,10 +1624,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:52.8510838Z\",\r\n \"duration\": \"PT1M17.435676S\",\r\n \"trackingId\": \"ce750376-bcfe-4be6-b554-8109e0e1221e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:09.1141195Z\",\r\n \"duration\": \"PT44.4773351S\",\r\n \"trackingId\": \"775d016c-157f-452a-b0ea-00f132ad5915\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2118" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2071,16 +1639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14460" + "14876" ], "x-ms-request-id": [ - "f5660d01-1010-4da6-aaef-f52b59650320" + "ebbb9033-d852-4571-b526-b0cda740931d" ], "x-ms-correlation-request-id": [ - "f5660d01-1010-4da6-aaef-f52b59650320" + "ebbb9033-d852-4571-b526-b0cda740931d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092256Z:f5660d01-1010-4da6-aaef-f52b59650320" + "NORTHEUROPE:20151022T123310Z:ebbb9033-d852-4571-b526-b0cda740931d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,7 +1657,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:55 GMT" + "Thu, 22 Oct 2015 12:33:09 GMT" ] }, "StatusCode": 200 @@ -2104,10 +1672,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:52.8510838Z\",\r\n \"duration\": \"PT1M17.435676S\",\r\n \"trackingId\": \"ce750376-bcfe-4be6-b554-8109e0e1221e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:09.1141195Z\",\r\n \"duration\": \"PT44.4773351S\",\r\n \"trackingId\": \"775d016c-157f-452a-b0ea-00f132ad5915\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2118" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2119,16 +1687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14457" + "14874" ], "x-ms-request-id": [ - "db0e52fd-75be-4756-b349-e1f32504817a" + "2efa6b3b-50eb-4568-a838-aab6992cf6b6" ], "x-ms-correlation-request-id": [ - "db0e52fd-75be-4756-b349-e1f32504817a" + "2efa6b3b-50eb-4568-a838-aab6992cf6b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092300Z:db0e52fd-75be-4756-b349-e1f32504817a" + "NORTHEUROPE:20151022T123314Z:2efa6b3b-50eb-4568-a838-aab6992cf6b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,7 +1705,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:59 GMT" + "Thu, 22 Oct 2015 12:33:14 GMT" ] }, "StatusCode": 200 @@ -2152,10 +1720,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:52.8510838Z\",\r\n \"duration\": \"PT1M17.435676S\",\r\n \"trackingId\": \"ce750376-bcfe-4be6-b554-8109e0e1221e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:09.1141195Z\",\r\n \"duration\": \"PT44.4773351S\",\r\n \"trackingId\": \"775d016c-157f-452a-b0ea-00f132ad5915\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2118" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2167,16 +1735,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14455" + "14872" ], "x-ms-request-id": [ - "8fc7889b-37de-4a2d-ba93-20b966f38ed9" + "f37dbb91-acbf-477b-9f49-98d8d28b53ad" ], "x-ms-correlation-request-id": [ - "8fc7889b-37de-4a2d-ba93-20b966f38ed9" + "f37dbb91-acbf-477b-9f49-98d8d28b53ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092304Z:8fc7889b-37de-4a2d-ba93-20b966f38ed9" + "NORTHEUROPE:20151022T123318Z:f37dbb91-acbf-477b-9f49-98d8d28b53ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2185,7 +1753,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:03 GMT" + "Thu, 22 Oct 2015 12:33:17 GMT" ] }, "StatusCode": 200 @@ -2200,10 +1768,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:22:52.8510838Z\",\r\n \"duration\": \"PT1M17.435676S\",\r\n \"trackingId\": \"ce750376-bcfe-4be6-b554-8109e0e1221e\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:09.1141195Z\",\r\n \"duration\": \"PT44.4773351S\",\r\n \"trackingId\": \"775d016c-157f-452a-b0ea-00f132ad5915\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2118" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2215,16 +1783,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14452" + "14870" ], "x-ms-request-id": [ - "9dde7d38-ddd5-4433-b1d1-9e364e53a4e4" + "1fffc9e5-3188-435b-984d-55a8607169fd" ], "x-ms-correlation-request-id": [ - "9dde7d38-ddd5-4433-b1d1-9e364e53a4e4" + "1fffc9e5-3188-435b-984d-55a8607169fd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092308Z:9dde7d38-ddd5-4433-b1d1-9e364e53a4e4" + "NORTHEUROPE:20151022T123322Z:1fffc9e5-3188-435b-984d-55a8607169fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,7 +1801,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:07 GMT" + "Thu, 22 Oct 2015 12:33:21 GMT" ] }, "StatusCode": 200 @@ -2248,10 +1816,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:23:10.3480555Z\",\r\n \"duration\": \"PT1M34.9326477S\",\r\n \"trackingId\": \"89d02f2e-3a6a-4eab-90fb-8c75f787c74e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:09.1141195Z\",\r\n \"duration\": \"PT44.4773351S\",\r\n \"trackingId\": \"775d016c-157f-452a-b0ea-00f132ad5915\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2118" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2263,16 +1831,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14450" + "14868" ], "x-ms-request-id": [ - "42a913ea-70b6-42ed-b2d6-8ed60212e6d0" + "17d64372-7ba0-4064-aa66-b78b056e3c3c" ], "x-ms-correlation-request-id": [ - "42a913ea-70b6-42ed-b2d6-8ed60212e6d0" + "17d64372-7ba0-4064-aa66-b78b056e3c3c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092312Z:42a913ea-70b6-42ed-b2d6-8ed60212e6d0" + "NORTHEUROPE:20151022T123326Z:17d64372-7ba0-4064-aa66-b78b056e3c3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2281,7 +1849,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:11 GMT" + "Thu, 22 Oct 2015 12:33:26 GMT" ] }, "StatusCode": 200 @@ -2296,7 +1864,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:23:10.3480555Z\",\r\n \"duration\": \"PT1M34.9326477S\",\r\n \"trackingId\": \"89d02f2e-3a6a-4eab-90fb-8c75f787c74e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:27.0548668Z\",\r\n \"duration\": \"PT1M2.4180824S\",\r\n \"trackingId\": \"b2343542-42af-4019-904f-41cbcc5ae0ee\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2118" @@ -2311,16 +1879,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14446" + "14866" ], "x-ms-request-id": [ - "6077394c-765f-4a6a-8879-bf912292e59d" + "30c97290-8071-4add-b115-6a2060ce766a" ], "x-ms-correlation-request-id": [ - "6077394c-765f-4a6a-8879-bf912292e59d" + "30c97290-8071-4add-b115-6a2060ce766a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092316Z:6077394c-765f-4a6a-8879-bf912292e59d" + "NORTHEUROPE:20151022T123330Z:30c97290-8071-4add-b115-6a2060ce766a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2329,7 +1897,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:15 GMT" + "Thu, 22 Oct 2015 12:33:30 GMT" ] }, "StatusCode": 200 @@ -2344,10 +1912,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:23:17.2447078Z\",\r\n \"duration\": \"PT1M41.8293S\",\r\n \"trackingId\": \"dc4ebce5-f01a-49c5-a276-eebcbfedd542\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:27.0548668Z\",\r\n \"duration\": \"PT1M2.4180824S\",\r\n \"trackingId\": \"b2343542-42af-4019-904f-41cbcc5ae0ee\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2115" + "2118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,16 +1927,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14444" + "14864" ], "x-ms-request-id": [ - "34560289-a154-4f43-a411-4719d6f59f78" + "003a84a4-f711-4a76-b591-110a701db6ad" ], "x-ms-correlation-request-id": [ - "34560289-a154-4f43-a411-4719d6f59f78" + "003a84a4-f711-4a76-b591-110a701db6ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092320Z:34560289-a154-4f43-a411-4719d6f59f78" + "NORTHEUROPE:20151022T123334Z:003a84a4-f711-4a76-b591-110a701db6ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2377,7 +1945,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:19 GMT" + "Thu, 22 Oct 2015 12:33:33 GMT" ] }, "StatusCode": 200 @@ -2392,10 +1960,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:23:17.2447078Z\",\r\n \"duration\": \"PT1M41.8293S\",\r\n \"trackingId\": \"dc4ebce5-f01a-49c5-a276-eebcbfedd542\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:27.0548668Z\",\r\n \"duration\": \"PT1M2.4180824S\",\r\n \"trackingId\": \"b2343542-42af-4019-904f-41cbcc5ae0ee\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2115" + "2118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2407,16 +1975,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14442" + "14862" ], "x-ms-request-id": [ - "bafce10b-1b0a-46dd-8ffc-195be44f58ae" + "d9a0c689-2e33-4fae-ae0d-08f90a44f246" ], "x-ms-correlation-request-id": [ - "bafce10b-1b0a-46dd-8ffc-195be44f58ae" + "d9a0c689-2e33-4fae-ae0d-08f90a44f246" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092324Z:bafce10b-1b0a-46dd-8ffc-195be44f58ae" + "NORTHEUROPE:20151022T123338Z:d9a0c689-2e33-4fae-ae0d-08f90a44f246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2425,7 +1993,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:24 GMT" + "Thu, 22 Oct 2015 12:33:37 GMT" ] }, "StatusCode": 200 @@ -2440,7 +2008,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:23:24.4748995Z\",\r\n \"duration\": \"PT1M49.0594917S\",\r\n \"trackingId\": \"5f0b4501-a633-4e25-be5b-fd485bb4660f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:27.0548668Z\",\r\n \"duration\": \"PT1M2.4180824S\",\r\n \"trackingId\": \"b2343542-42af-4019-904f-41cbcc5ae0ee\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2118" @@ -2455,16 +2023,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14439" + "14860" ], "x-ms-request-id": [ - "cd325136-c421-4975-931a-413ad022c916" + "6bb801b0-f526-40a0-933e-6922da7240ab" ], "x-ms-correlation-request-id": [ - "cd325136-c421-4975-931a-413ad022c916" + "6bb801b0-f526-40a0-933e-6922da7240ab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092328Z:cd325136-c421-4975-931a-413ad022c916" + "NORTHEUROPE:20151022T123342Z:6bb801b0-f526-40a0-933e-6922da7240ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2473,7 +2041,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:28 GMT" + "Thu, 22 Oct 2015 12:33:41 GMT" ] }, "StatusCode": 200 @@ -2488,10 +2056,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:23:30.7372898Z\",\r\n \"duration\": \"PT1M55.321882S\",\r\n \"trackingId\": \"3b768ad9-201f-4188-b213-a3bdd72a7393\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:39.1596141Z\",\r\n \"duration\": \"PT3.6359553S\",\r\n \"trackingId\": \"62504571-67f3-46a6-a762-caf7af3538a5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:21:35.2697345Z\",\r\n \"duration\": \"PT1M6.7551494S\",\r\n \"trackingId\": \"7d5da44d-5cd2-49c8-8b27-5b88895d8166\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:44.8787559Z\",\r\n \"duration\": \"PT1M20.2419715S\",\r\n \"trackingId\": \"f80473cd-378e-4822-80be-a26741113b46\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2119" + "2118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2503,16 +2071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14435" + "14858" ], "x-ms-request-id": [ - "90e398e3-8e99-456d-b6a8-5fc343322b03" + "d23a0c9c-85f7-438f-a245-e8aece36784f" ], "x-ms-correlation-request-id": [ - "90e398e3-8e99-456d-b6a8-5fc343322b03" + "d23a0c9c-85f7-438f-a245-e8aece36784f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092332Z:90e398e3-8e99-456d-b6a8-5fc343322b03" + "NORTHEUROPE:20151022T123346Z:d23a0c9c-85f7-438f-a245-e8aece36784f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,14 +2089,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:32 GMT" + "Thu, 22 Oct 2015 12:33:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2536,10 +2104,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:33:44.8787559Z\",\r\n \"duration\": \"PT1M20.2419715S\",\r\n \"trackingId\": \"f80473cd-378e-4822-80be-a26741113b46\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,16 +2119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" + "14856" ], "x-ms-request-id": [ - "a83088fa-ca06-4ae2-ac20-bc4608e97b41" + "b7af3ceb-30b4-40c3-bf29-65c9c5ded9b0" ], "x-ms-correlation-request-id": [ - "a83088fa-ca06-4ae2-ac20-bc4608e97b41" + "b7af3ceb-30b4-40c3-bf29-65c9c5ded9b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092031Z:a83088fa-ca06-4ae2-ac20-bc4608e97b41" + "NORTHEUROPE:20151022T123350Z:b7af3ceb-30b4-40c3-bf29-65c9c5ded9b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2569,14 +2137,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:30 GMT" + "Thu, 22 Oct 2015 12:33:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,10 +2152,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/027E6BAABA8DED20\",\r\n \"operationId\": \"027E6BAABA8DED20\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:33:52.4939254Z\",\r\n \"duration\": \"PT1M27.857141S\",\r\n \"trackingId\": \"1d6d7e7f-476a-4df7-9468-4aa9b8ffbc39\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0EA97AF3585CDC0A\",\r\n \"operationId\": \"0EA97AF3585CDC0A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:29.2458139Z\",\r\n \"duration\": \"PT4.5209743S\",\r\n \"trackingId\": \"04b8c3ab-4efb-49ae-9f4d-2246c05411d4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup/operations/0ED4B0312F55E386\",\r\n \"operationId\": \"0ED4B0312F55E386\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:32:24.4827713Z\",\r\n \"duration\": \"PT1M3.5754789S\",\r\n \"trackingId\": \"ebe2f5be-e653-4232-921f-0228cd5824d3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,16 +2167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "14854" ], "x-ms-request-id": [ - "fde221e6-4b6c-4500-886a-5fefc1d1da62" + "469bf227-8c28-4235-9245-762f522c6e41" ], "x-ms-correlation-request-id": [ - "fde221e6-4b6c-4500-886a-5fefc1d1da62" + "469bf227-8c28-4235-9245-762f522c6e41" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092034Z:fde221e6-4b6c-4500-886a-5fefc1d1da62" + "NORTHEUROPE:20151022T123353Z:469bf227-8c28-4235-9245-762f522c6e41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2617,7 +2185,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:34 GMT" + "Thu, 22 Oct 2015 12:33:53 GMT" ] }, "StatusCode": 200 @@ -2632,10 +2200,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2647,16 +2215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" + "14932" ], "x-ms-request-id": [ - "4e25e910-037f-4b29-8997-f1ba41123530" + "5f9edb65-ed56-4752-9538-3b11f8459c72" ], "x-ms-correlation-request-id": [ - "4e25e910-037f-4b29-8997-f1ba41123530" + "5f9edb65-ed56-4752-9538-3b11f8459c72" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092038Z:4e25e910-037f-4b29-8997-f1ba41123530" + "NORTHEUROPE:20151022T123123Z:5f9edb65-ed56-4752-9538-3b11f8459c72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,7 +2233,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:38 GMT" + "Thu, 22 Oct 2015 12:31:23 GMT" ] }, "StatusCode": 200 @@ -2680,10 +2248,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,16 +2263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" + "14930" ], "x-ms-request-id": [ - "3e902cbf-1494-4101-bbe6-65026e607620" + "7a7f17a7-e8cf-47ea-b45d-7b763e142bf0" ], "x-ms-correlation-request-id": [ - "3e902cbf-1494-4101-bbe6-65026e607620" + "7a7f17a7-e8cf-47ea-b45d-7b763e142bf0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092042Z:3e902cbf-1494-4101-bbe6-65026e607620" + "NORTHEUROPE:20151022T123127Z:7a7f17a7-e8cf-47ea-b45d-7b763e142bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2713,7 +2281,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:42 GMT" + "Thu, 22 Oct 2015 12:31:26 GMT" ] }, "StatusCode": 200 @@ -2728,10 +2296,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2743,16 +2311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14535" + "14928" ], "x-ms-request-id": [ - "a82ded1c-b489-48d3-ac40-c7d654fad817" + "20183a6a-1851-49b6-936b-11d854bda467" ], "x-ms-correlation-request-id": [ - "a82ded1c-b489-48d3-ac40-c7d654fad817" + "20183a6a-1851-49b6-936b-11d854bda467" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092046Z:a82ded1c-b489-48d3-ac40-c7d654fad817" + "NORTHEUROPE:20151022T123131Z:20183a6a-1851-49b6-936b-11d854bda467" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2761,7 +2329,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:45 GMT" + "Thu, 22 Oct 2015 12:31:31 GMT" ] }, "StatusCode": 200 @@ -2776,10 +2344,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2791,16 +2359,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14533" + "14926" ], "x-ms-request-id": [ - "af897b3c-f55c-45e4-8a60-544ae5b433cd" + "3b53a53a-2ccd-4f07-beef-10f15f86d7d6" ], "x-ms-correlation-request-id": [ - "af897b3c-f55c-45e4-8a60-544ae5b433cd" + "3b53a53a-2ccd-4f07-beef-10f15f86d7d6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092050Z:af897b3c-f55c-45e4-8a60-544ae5b433cd" + "NORTHEUROPE:20151022T123134Z:3b53a53a-2ccd-4f07-beef-10f15f86d7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2809,7 +2377,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:49 GMT" + "Thu, 22 Oct 2015 12:31:34 GMT" ] }, "StatusCode": 200 @@ -2824,10 +2392,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2839,16 +2407,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" + "14924" ], "x-ms-request-id": [ - "18ec8835-c1b8-43ba-8687-fe9c028413d4" + "345635c2-a526-485e-90ec-064619b918ac" ], "x-ms-correlation-request-id": [ - "18ec8835-c1b8-43ba-8687-fe9c028413d4" + "345635c2-a526-485e-90ec-064619b918ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092053Z:18ec8835-c1b8-43ba-8687-fe9c028413d4" + "NORTHEUROPE:20151022T123138Z:345635c2-a526-485e-90ec-064619b918ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2857,7 +2425,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:53 GMT" + "Thu, 22 Oct 2015 12:31:38 GMT" ] }, "StatusCode": 200 @@ -2872,10 +2440,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2887,16 +2455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14528" + "14922" ], "x-ms-request-id": [ - "1c9454a5-370c-4155-a777-c5d3f4541073" + "86fe3e0c-686c-426a-95a4-4a900028b306" ], "x-ms-correlation-request-id": [ - "1c9454a5-370c-4155-a777-c5d3f4541073" + "86fe3e0c-686c-426a-95a4-4a900028b306" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092057Z:1c9454a5-370c-4155-a777-c5d3f4541073" + "NORTHEUROPE:20151022T123142Z:86fe3e0c-686c-426a-95a4-4a900028b306" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2905,7 +2473,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:20:57 GMT" + "Thu, 22 Oct 2015 12:31:41 GMT" ] }, "StatusCode": 200 @@ -2920,10 +2488,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,16 +2503,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14525" + "14920" ], "x-ms-request-id": [ - "cf70f0e1-afa2-447e-b059-2f7317f32a74" + "c22884a6-72b6-4d76-96a0-cef0f9863c2a" ], "x-ms-correlation-request-id": [ - "cf70f0e1-afa2-447e-b059-2f7317f32a74" + "c22884a6-72b6-4d76-96a0-cef0f9863c2a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092101Z:cf70f0e1-afa2-447e-b059-2f7317f32a74" + "NORTHEUROPE:20151022T123145Z:c22884a6-72b6-4d76-96a0-cef0f9863c2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,7 +2521,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:00 GMT" + "Thu, 22 Oct 2015 12:31:45 GMT" ] }, "StatusCode": 200 @@ -2968,10 +2536,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,16 +2551,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14523" + "14918" ], "x-ms-request-id": [ - "c33b355e-f22f-4d2e-8931-a35e55690f48" + "7bd926d0-f281-4f83-887d-3c1818334cd2" ], "x-ms-correlation-request-id": [ - "c33b355e-f22f-4d2e-8931-a35e55690f48" + "7bd926d0-f281-4f83-887d-3c1818334cd2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092105Z:c33b355e-f22f-4d2e-8931-a35e55690f48" + "NORTHEUROPE:20151022T123149Z:7bd926d0-f281-4f83-887d-3c1818334cd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,7 +2569,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:04 GMT" + "Thu, 22 Oct 2015 12:31:49 GMT" ] }, "StatusCode": 200 @@ -3016,10 +2584,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3031,16 +2599,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14521" + "14916" ], "x-ms-request-id": [ - "db19c847-740d-4340-be24-b5039d5c6b3c" + "21990f2a-9e1f-4142-98bc-654729e43919" ], "x-ms-correlation-request-id": [ - "db19c847-740d-4340-be24-b5039d5c6b3c" + "21990f2a-9e1f-4142-98bc-654729e43919" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092109Z:db19c847-740d-4340-be24-b5039d5c6b3c" + "NORTHEUROPE:20151022T123153Z:21990f2a-9e1f-4142-98bc-654729e43919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,7 +2617,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:08 GMT" + "Thu, 22 Oct 2015 12:31:52 GMT" ] }, "StatusCode": 200 @@ -3064,10 +2632,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3079,16 +2647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14519" + "14914" ], "x-ms-request-id": [ - "8f4af128-4ce9-4878-bb02-64d3719a60b3" + "b688950f-bdc3-46f8-be44-87d0e492da50" ], "x-ms-correlation-request-id": [ - "8f4af128-4ce9-4878-bb02-64d3719a60b3" + "b688950f-bdc3-46f8-be44-87d0e492da50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092112Z:8f4af128-4ce9-4878-bb02-64d3719a60b3" + "NORTHEUROPE:20151022T123156Z:b688950f-bdc3-46f8-be44-87d0e492da50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,7 +2665,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:11 GMT" + "Thu, 22 Oct 2015 12:31:55 GMT" ] }, "StatusCode": 200 @@ -3112,10 +2680,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3127,16 +2695,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14517" + "14912" ], "x-ms-request-id": [ - "2065fea7-5d09-4f9f-8497-726b6c481dd5" + "3769211d-81a0-4c79-93f3-15106e03d13c" ], "x-ms-correlation-request-id": [ - "2065fea7-5d09-4f9f-8497-726b6c481dd5" + "3769211d-81a0-4c79-93f3-15106e03d13c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092116Z:2065fea7-5d09-4f9f-8497-726b6c481dd5" + "NORTHEUROPE:20151022T123200Z:3769211d-81a0-4c79-93f3-15106e03d13c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3145,7 +2713,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:15 GMT" + "Thu, 22 Oct 2015 12:32:00 GMT" ] }, "StatusCode": 200 @@ -3160,10 +2728,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3175,16 +2743,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14514" + "14910" ], "x-ms-request-id": [ - "29dec3df-5664-4fb9-a817-c8c75ebee907" + "a5a9fad6-74bc-4021-8492-349cdeb37e48" ], "x-ms-correlation-request-id": [ - "29dec3df-5664-4fb9-a817-c8c75ebee907" + "a5a9fad6-74bc-4021-8492-349cdeb37e48" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092120Z:29dec3df-5664-4fb9-a817-c8c75ebee907" + "NORTHEUROPE:20151022T123204Z:a5a9fad6-74bc-4021-8492-349cdeb37e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3193,7 +2761,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:20 GMT" + "Thu, 22 Oct 2015 12:32:03 GMT" ] }, "StatusCode": 200 @@ -3208,10 +2776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3223,16 +2791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14510" + "14908" ], "x-ms-request-id": [ - "33fa7a02-5f7a-4bfb-ae4e-433738032646" + "b775c024-2048-419a-9db7-9f1a5964a27f" ], "x-ms-correlation-request-id": [ - "33fa7a02-5f7a-4bfb-ae4e-433738032646" + "b775c024-2048-419a-9db7-9f1a5964a27f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092124Z:33fa7a02-5f7a-4bfb-ae4e-433738032646" + "NORTHEUROPE:20151022T123207Z:b775c024-2048-419a-9db7-9f1a5964a27f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,7 +2809,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:24 GMT" + "Thu, 22 Oct 2015 12:32:07 GMT" ] }, "StatusCode": 200 @@ -3256,10 +2824,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3271,16 +2839,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14508" + "14906" ], "x-ms-request-id": [ - "90553981-efca-4059-9ea2-568a44e3607c" + "23b85b5a-29fb-48e7-9367-143786a80503" ], "x-ms-correlation-request-id": [ - "90553981-efca-4059-9ea2-568a44e3607c" + "23b85b5a-29fb-48e7-9367-143786a80503" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092127Z:90553981-efca-4059-9ea2-568a44e3607c" + "NORTHEUROPE:20151022T123211Z:23b85b5a-29fb-48e7-9367-143786a80503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3289,7 +2857,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:27 GMT" + "Thu, 22 Oct 2015 12:32:11 GMT" ] }, "StatusCode": 200 @@ -3304,10 +2872,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3319,16 +2887,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14506" + "14904" ], "x-ms-request-id": [ - "e9b97378-de7c-4bb0-9805-c6e6aa03b13b" + "d94fa427-16f7-4a18-b14e-7c923f7782ba" ], "x-ms-correlation-request-id": [ - "e9b97378-de7c-4bb0-9805-c6e6aa03b13b" + "d94fa427-16f7-4a18-b14e-7c923f7782ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092131Z:e9b97378-de7c-4bb0-9805-c6e6aa03b13b" + "NORTHEUROPE:20151022T123215Z:d94fa427-16f7-4a18-b14e-7c923f7782ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3337,7 +2905,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:31 GMT" + "Thu, 22 Oct 2015 12:32:14 GMT" ] }, "StatusCode": 200 @@ -3352,10 +2920,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3367,16 +2935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14504" + "14902" ], "x-ms-request-id": [ - "4646799a-c8b7-4ad7-8835-d6a80bef88ff" + "ca057456-9b5b-4585-990a-5dd4d1fe73d4" ], "x-ms-correlation-request-id": [ - "4646799a-c8b7-4ad7-8835-d6a80bef88ff" + "ca057456-9b5b-4585-990a-5dd4d1fe73d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092135Z:4646799a-c8b7-4ad7-8835-d6a80bef88ff" + "NORTHEUROPE:20151022T123218Z:ca057456-9b5b-4585-990a-5dd4d1fe73d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3385,7 +2953,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:35 GMT" + "Thu, 22 Oct 2015 12:32:18 GMT" ] }, "StatusCode": 200 @@ -3400,10 +2968,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3415,16 +2983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14502" + "14900" ], "x-ms-request-id": [ - "5aa422ca-250f-4850-9653-971e75aa9229" + "02e128c2-0d1d-446d-a81a-b8d5e39b65ca" ], "x-ms-correlation-request-id": [ - "5aa422ca-250f-4850-9653-971e75aa9229" + "02e128c2-0d1d-446d-a81a-b8d5e39b65ca" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092139Z:5aa422ca-250f-4850-9653-971e75aa9229" + "NORTHEUROPE:20151022T123222Z:02e128c2-0d1d-446d-a81a-b8d5e39b65ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,7 +3001,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:38 GMT" + "Thu, 22 Oct 2015 12:32:21 GMT" ] }, "StatusCode": 200 @@ -3448,10 +3016,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3463,16 +3031,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14499" + "14898" ], "x-ms-request-id": [ - "d4ce6671-764b-42ef-b4b2-c5a6409ab71b" + "d60622d2-e39a-4aa4-b254-9c2a8904de3b" ], "x-ms-correlation-request-id": [ - "d4ce6671-764b-42ef-b4b2-c5a6409ab71b" + "d60622d2-e39a-4aa4-b254-9c2a8904de3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092143Z:d4ce6671-764b-42ef-b4b2-c5a6409ab71b" + "NORTHEUROPE:20151022T123226Z:d60622d2-e39a-4aa4-b254-9c2a8904de3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,7 +3049,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:42 GMT" + "Thu, 22 Oct 2015 12:32:25 GMT" ] }, "StatusCode": 200 @@ -3496,10 +3064,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3511,16 +3079,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14497" + "14896" ], "x-ms-request-id": [ - "6db56736-616a-4cd3-8111-5c7ac8ee4eff" + "da3567f4-c32e-4019-86b8-8d49b3fd563e" ], "x-ms-correlation-request-id": [ - "6db56736-616a-4cd3-8111-5c7ac8ee4eff" + "da3567f4-c32e-4019-86b8-8d49b3fd563e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092147Z:6db56736-616a-4cd3-8111-5c7ac8ee4eff" + "NORTHEUROPE:20151022T123230Z:da3567f4-c32e-4019-86b8-8d49b3fd563e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3529,7 +3097,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:46 GMT" + "Thu, 22 Oct 2015 12:32:29 GMT" ] }, "StatusCode": 200 @@ -3544,10 +3112,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3559,16 +3127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14495" + "14894" ], "x-ms-request-id": [ - "9ec40eab-3a6f-4429-931e-488eee686f1b" + "4ad3943d-3844-4337-8188-6f08eca696fd" ], "x-ms-correlation-request-id": [ - "9ec40eab-3a6f-4429-931e-488eee686f1b" + "4ad3943d-3844-4337-8188-6f08eca696fd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092151Z:9ec40eab-3a6f-4429-931e-488eee686f1b" + "NORTHEUROPE:20151022T123234Z:4ad3943d-3844-4337-8188-6f08eca696fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3577,7 +3145,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:51 GMT" + "Thu, 22 Oct 2015 12:32:33 GMT" ] }, "StatusCode": 200 @@ -3592,10 +3160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3607,16 +3175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14493" + "14892" ], "x-ms-request-id": [ - "7f3ba080-2dcd-4640-b081-316289c84f03" + "58795255-fa60-49e6-8c1b-91bf18f85ebb" ], "x-ms-correlation-request-id": [ - "7f3ba080-2dcd-4640-b081-316289c84f03" + "58795255-fa60-49e6-8c1b-91bf18f85ebb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092155Z:7f3ba080-2dcd-4640-b081-316289c84f03" + "NORTHEUROPE:20151022T123238Z:58795255-fa60-49e6-8c1b-91bf18f85ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3625,7 +3193,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:55 GMT" + "Thu, 22 Oct 2015 12:32:38 GMT" ] }, "StatusCode": 200 @@ -3640,10 +3208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3655,16 +3223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14491" + "14890" ], "x-ms-request-id": [ - "43b01a2f-6297-4b1d-a78c-84ed493f2876" + "2dc37340-4380-471e-9ece-e73d78899c24" ], "x-ms-correlation-request-id": [ - "43b01a2f-6297-4b1d-a78c-84ed493f2876" + "2dc37340-4380-471e-9ece-e73d78899c24" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092159Z:43b01a2f-6297-4b1d-a78c-84ed493f2876" + "NORTHEUROPE:20151022T123242Z:2dc37340-4380-471e-9ece-e73d78899c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3673,7 +3241,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:21:59 GMT" + "Thu, 22 Oct 2015 12:32:42 GMT" ] }, "StatusCode": 200 @@ -3688,10 +3256,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3703,16 +3271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14489" + "14888" ], "x-ms-request-id": [ - "43712b74-2e41-49ed-983b-5f607684eea3" + "03ff3ca7-9ed3-4da7-a51b-d7aa1c89c24f" ], "x-ms-correlation-request-id": [ - "43712b74-2e41-49ed-983b-5f607684eea3" + "03ff3ca7-9ed3-4da7-a51b-d7aa1c89c24f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092203Z:43712b74-2e41-49ed-983b-5f607684eea3" + "NORTHEUROPE:20151022T123246Z:03ff3ca7-9ed3-4da7-a51b-d7aa1c89c24f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3721,7 +3289,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:03 GMT" + "Thu, 22 Oct 2015 12:32:46 GMT" ] }, "StatusCode": 200 @@ -3736,10 +3304,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3751,16 +3319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14487" + "14886" ], "x-ms-request-id": [ - "87480478-37da-4442-8f27-f6c0b2ec1e2f" + "ca5ebfc3-b24a-4e3a-8b88-2695faed00a0" ], "x-ms-correlation-request-id": [ - "87480478-37da-4442-8f27-f6c0b2ec1e2f" + "ca5ebfc3-b24a-4e3a-8b88-2695faed00a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092208Z:87480478-37da-4442-8f27-f6c0b2ec1e2f" + "NORTHEUROPE:20151022T123250Z:ca5ebfc3-b24a-4e3a-8b88-2695faed00a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,7 +3337,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:07 GMT" + "Thu, 22 Oct 2015 12:32:50 GMT" ] }, "StatusCode": 200 @@ -3784,10 +3352,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3799,16 +3367,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14485" + "14884" ], "x-ms-request-id": [ - "d0befe89-5603-42a8-bcb2-ae35873ae050" + "c7d9dd51-d6e0-4346-8ef8-c9191057d8cd" ], "x-ms-correlation-request-id": [ - "d0befe89-5603-42a8-bcb2-ae35873ae050" + "c7d9dd51-d6e0-4346-8ef8-c9191057d8cd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092212Z:d0befe89-5603-42a8-bcb2-ae35873ae050" + "NORTHEUROPE:20151022T123254Z:c7d9dd51-d6e0-4346-8ef8-c9191057d8cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3817,7 +3385,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:11 GMT" + "Thu, 22 Oct 2015 12:32:54 GMT" ] }, "StatusCode": 200 @@ -3832,10 +3400,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,16 +3415,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14482" + "14882" ], "x-ms-request-id": [ - "3b08ac6f-f47b-4d71-a0e5-f61d62aa1205" + "5b3786e0-7694-477c-acba-f66084ebd201" ], "x-ms-correlation-request-id": [ - "3b08ac6f-f47b-4d71-a0e5-f61d62aa1205" + "5b3786e0-7694-477c-acba-f66084ebd201" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092216Z:3b08ac6f-f47b-4d71-a0e5-f61d62aa1205" + "NORTHEUROPE:20151022T123258Z:5b3786e0-7694-477c-acba-f66084ebd201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,7 +3433,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:15 GMT" + "Thu, 22 Oct 2015 12:32:58 GMT" ] }, "StatusCode": 200 @@ -3880,10 +3448,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3895,16 +3463,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14480" + "14880" ], "x-ms-request-id": [ - "c287b195-e1bf-4f27-9077-8423f6f1a8b0" + "3759ac16-84b9-4ab0-8365-e789d16f8534" ], "x-ms-correlation-request-id": [ - "c287b195-e1bf-4f27-9077-8423f6f1a8b0" + "3759ac16-84b9-4ab0-8365-e789d16f8534" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092220Z:c287b195-e1bf-4f27-9077-8423f6f1a8b0" + "NORTHEUROPE:20151022T123302Z:3759ac16-84b9-4ab0-8365-e789d16f8534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,7 +3481,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:19 GMT" + "Thu, 22 Oct 2015 12:33:02 GMT" ] }, "StatusCode": 200 @@ -3928,10 +3496,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3943,16 +3511,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14477" + "14878" ], "x-ms-request-id": [ - "24140a1c-b355-4a77-831f-722dd010ec22" + "daac72bd-581d-41b0-be92-077020e8e9f4" ], "x-ms-correlation-request-id": [ - "24140a1c-b355-4a77-831f-722dd010ec22" + "daac72bd-581d-41b0-be92-077020e8e9f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092224Z:24140a1c-b355-4a77-831f-722dd010ec22" + "NORTHEUROPE:20151022T123306Z:daac72bd-581d-41b0-be92-077020e8e9f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3961,7 +3529,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:23 GMT" + "Thu, 22 Oct 2015 12:33:06 GMT" ] }, "StatusCode": 200 @@ -3976,10 +3544,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3991,16 +3559,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14475" + "14875" ], "x-ms-request-id": [ - "d92e2fcd-60b8-4201-9b52-fb3342395917" + "5efc3d57-5f3c-4448-81a8-67cbbb68582f" ], "x-ms-correlation-request-id": [ - "d92e2fcd-60b8-4201-9b52-fb3342395917" + "5efc3d57-5f3c-4448-81a8-67cbbb68582f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092228Z:d92e2fcd-60b8-4201-9b52-fb3342395917" + "NORTHEUROPE:20151022T123310Z:5efc3d57-5f3c-4448-81a8-67cbbb68582f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4009,7 +3577,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:28 GMT" + "Thu, 22 Oct 2015 12:33:10 GMT" ] }, "StatusCode": 200 @@ -4024,10 +3592,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4039,16 +3607,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14473" + "14873" ], "x-ms-request-id": [ - "bc8815e6-c017-402a-8fb0-34b9c8ae2c87" + "c8f4b412-8352-4dae-bccd-26a60f3f0b8c" ], "x-ms-correlation-request-id": [ - "bc8815e6-c017-402a-8fb0-34b9c8ae2c87" + "c8f4b412-8352-4dae-bccd-26a60f3f0b8c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092232Z:bc8815e6-c017-402a-8fb0-34b9c8ae2c87" + "NORTHEUROPE:20151022T123314Z:c8f4b412-8352-4dae-bccd-26a60f3f0b8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4057,7 +3625,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:32 GMT" + "Thu, 22 Oct 2015 12:33:14 GMT" ] }, "StatusCode": 200 @@ -4072,10 +3640,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4087,16 +3655,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14470" + "14871" ], "x-ms-request-id": [ - "03d2500d-d9dc-4627-9a7c-6918b42f0ab3" + "541ad1a8-eca7-4b0a-8d88-aff47cc6557c" ], "x-ms-correlation-request-id": [ - "03d2500d-d9dc-4627-9a7c-6918b42f0ab3" + "541ad1a8-eca7-4b0a-8d88-aff47cc6557c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092236Z:03d2500d-d9dc-4627-9a7c-6918b42f0ab3" + "NORTHEUROPE:20151022T123319Z:541ad1a8-eca7-4b0a-8d88-aff47cc6557c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4105,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:36 GMT" + "Thu, 22 Oct 2015 12:33:18 GMT" ] }, "StatusCode": 200 @@ -4120,10 +3688,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4135,16 +3703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14467" + "14869" ], "x-ms-request-id": [ - "44e52716-3fc9-4d40-a3fa-37709c6b2040" + "089d2695-c0cf-4dc0-8101-c2ef8801ee13" ], "x-ms-correlation-request-id": [ - "44e52716-3fc9-4d40-a3fa-37709c6b2040" + "089d2695-c0cf-4dc0-8101-c2ef8801ee13" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092240Z:44e52716-3fc9-4d40-a3fa-37709c6b2040" + "NORTHEUROPE:20151022T123323Z:089d2695-c0cf-4dc0-8101-c2ef8801ee13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4153,7 +3721,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:40 GMT" + "Thu, 22 Oct 2015 12:33:22 GMT" ] }, "StatusCode": 200 @@ -4168,10 +3736,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4183,16 +3751,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14465" + "14867" ], "x-ms-request-id": [ - "b91ade2c-b705-4499-9d8e-44cb6d7f6400" + "e88507c7-ee59-4bd7-9f42-94a3b2312466" ], "x-ms-correlation-request-id": [ - "b91ade2c-b705-4499-9d8e-44cb6d7f6400" + "e88507c7-ee59-4bd7-9f42-94a3b2312466" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092244Z:b91ade2c-b705-4499-9d8e-44cb6d7f6400" + "NORTHEUROPE:20151022T123326Z:e88507c7-ee59-4bd7-9f42-94a3b2312466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4201,7 +3769,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:44 GMT" + "Thu, 22 Oct 2015 12:33:26 GMT" ] }, "StatusCode": 200 @@ -4216,10 +3784,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4231,16 +3799,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14463" + "14865" ], "x-ms-request-id": [ - "5214740d-5928-484a-a9f2-806c053e0be9" + "a4e16d87-f541-4d03-835b-07ac9b591d31" ], "x-ms-correlation-request-id": [ - "5214740d-5928-484a-a9f2-806c053e0be9" + "a4e16d87-f541-4d03-835b-07ac9b591d31" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092248Z:5214740d-5928-484a-a9f2-806c053e0be9" + "NORTHEUROPE:20151022T123330Z:a4e16d87-f541-4d03-835b-07ac9b591d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4249,7 +3817,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:48 GMT" + "Thu, 22 Oct 2015 12:33:30 GMT" ] }, "StatusCode": 200 @@ -4264,10 +3832,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4279,16 +3847,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14461" + "14863" ], "x-ms-request-id": [ - "eded734e-c6ff-4a6b-85a2-9bb4d60e3cb7" + "2281cf77-a0e5-4c71-9df9-58e0724f4a8a" ], "x-ms-correlation-request-id": [ - "eded734e-c6ff-4a6b-85a2-9bb4d60e3cb7" + "2281cf77-a0e5-4c71-9df9-58e0724f4a8a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092252Z:eded734e-c6ff-4a6b-85a2-9bb4d60e3cb7" + "NORTHEUROPE:20151022T123334Z:2281cf77-a0e5-4c71-9df9-58e0724f4a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4297,7 +3865,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:52 GMT" + "Thu, 22 Oct 2015 12:33:34 GMT" ] }, "StatusCode": 200 @@ -4312,10 +3880,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4327,16 +3895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14459" + "14861" ], "x-ms-request-id": [ - "2c4eaff2-370f-4223-ae8f-86a5888a08c3" + "522664a0-d401-414e-9362-d05c664c93ae" ], "x-ms-correlation-request-id": [ - "2c4eaff2-370f-4223-ae8f-86a5888a08c3" + "522664a0-d401-414e-9362-d05c664c93ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092257Z:2c4eaff2-370f-4223-ae8f-86a5888a08c3" + "NORTHEUROPE:20151022T123338Z:522664a0-d401-414e-9362-d05c664c93ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4345,7 +3913,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:22:56 GMT" + "Thu, 22 Oct 2015 12:33:38 GMT" ] }, "StatusCode": 200 @@ -4360,10 +3928,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4375,16 +3943,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14456" + "14859" ], "x-ms-request-id": [ - "0c2a0362-c7f4-47ed-a3ba-53ea7b8ffec6" + "7cb6be18-791f-4598-b221-c3b35afc3684" ], "x-ms-correlation-request-id": [ - "0c2a0362-c7f4-47ed-a3ba-53ea7b8ffec6" + "7cb6be18-791f-4598-b221-c3b35afc3684" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092301Z:0c2a0362-c7f4-47ed-a3ba-53ea7b8ffec6" + "NORTHEUROPE:20151022T123342Z:7cb6be18-791f-4598-b221-c3b35afc3684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4393,7 +3961,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:00 GMT" + "Thu, 22 Oct 2015 12:33:42 GMT" ] }, "StatusCode": 200 @@ -4408,10 +3976,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4423,16 +3991,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14454" + "14857" ], "x-ms-request-id": [ - "d58933fa-63ee-4973-9d99-a4f61411e394" + "972b7322-e99b-4381-a6bd-d84b9f82d052" ], "x-ms-correlation-request-id": [ - "d58933fa-63ee-4973-9d99-a4f61411e394" + "972b7322-e99b-4381-a6bd-d84b9f82d052" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092305Z:d58933fa-63ee-4973-9d99-a4f61411e394" + "NORTHEUROPE:20151022T123346Z:972b7322-e99b-4381-a6bd-d84b9f82d052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4441,7 +4009,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:04 GMT" + "Thu, 22 Oct 2015 12:33:45 GMT" ] }, "StatusCode": 200 @@ -4456,10 +4024,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:31:20.8207108Z\",\r\n \"duration\": \"PT4.1295235S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4471,16 +4039,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14451" + "14855" ], "x-ms-request-id": [ - "35048d83-98df-493f-9687-81cf8a25ca34" + "e1eed4c3-c035-44f6-a81f-c3c0ac15eeb8" ], "x-ms-correlation-request-id": [ - "35048d83-98df-493f-9687-81cf8a25ca34" + "e1eed4c3-c035-44f6-a81f-c3c0ac15eeb8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092309Z:35048d83-98df-493f-9687-81cf8a25ca34" + "NORTHEUROPE:20151022T123350Z:e1eed4c3-c035-44f6-a81f-c3c0ac15eeb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4489,7 +4057,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:08 GMT" + "Thu, 22 Oct 2015 12:33:50 GMT" ] }, "StatusCode": 200 @@ -4504,10 +4072,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:33:52.9183817Z\",\r\n \"duration\": \"PT2M36.2271944S\",\r\n \"correlationId\": \"fabf6ce1-6258-4769-b227-bfcd8eca5574\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "2589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4519,16 +4087,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14448" + "14853" ], "x-ms-request-id": [ - "39910142-aac2-4cb3-820e-e08bf0ada85d" + "e211eeeb-2bf4-4b15-8b98-2576a8ae2b9a" ], "x-ms-correlation-request-id": [ - "39910142-aac2-4cb3-820e-e08bf0ada85d" + "e211eeeb-2bf4-4b15-8b98-2576a8ae2b9a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092313Z:39910142-aac2-4cb3-820e-e08bf0ada85d" + "NORTHEUROPE:20151022T123354Z:e211eeeb-2bf4-4b15-8b98-2576a8ae2b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4537,247 +4105,169 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:12 GMT" + "Thu, 22 Oct 2015 12:33:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "20aaff9c-ae42-4048-b542-aa9497a96096" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "12" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14445" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e9df0cb2-7c26-41c7-9b69-3c93652dda78" + "9af1666f-8620-4787-9947-2200d1463993" ], - "x-ms-correlation-request-id": [ - "e9df0cb2-7c26-41c7-9b69-3c93652dda78" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092317Z:e9df0cb2-7c26-41c7-9b69-3c93652dda78" + "DataServiceVersion": [ + "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:23:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2318" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14443" - ], - "x-ms-request-id": [ - "82290ab4-ed47-4104-909c-71aab5797215" + "14852" ], "x-ms-correlation-request-id": [ - "82290ab4-ed47-4104-909c-71aab5797215" + "434d3766-499b-4b6c-8096-4c4d2d786e89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092321Z:82290ab4-ed47-4104-909c-71aab5797215" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20151022T123404Z:434d3766-499b-4b6c-8096-4c4d2d786e89" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:20 GMT" + "Thu, 22 Oct 2015 12:34:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2318" + "12" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14440" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cab39cfb-f85f-4e04-b0ba-85c8eff996e0" + "2fd66663-91c5-42c3-9dd1-4f2527d5356a" ], - "x-ms-correlation-request-id": [ - "cab39cfb-f85f-4e04-b0ba-85c8eff996e0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092325Z:cab39cfb-f85f-4e04-b0ba-85c8eff996e0" + "DataServiceVersion": [ + "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 14 Oct 2015 09:23:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T09:20:28.442651Z\",\r\n \"duration\": \"PT4.1654248S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2318" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14438" - ], - "x-ms-request-id": [ - "f043ca85-b28e-46a5-9c63-ad5116074135" + "14851" ], "x-ms-correlation-request-id": [ - "f043ca85-b28e-46a5-9c63-ad5116074135" + "3fb82fc9-a2c6-4021-b790-5030039e89b9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092329Z:f043ca85-b28e-46a5-9c63-ad5116074135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20151022T123406Z:3fb82fc9-a2c6-4021-b790-5030039e89b9" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:29 GMT" + "Thu, 22 Oct 2015 12:34:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ca2925f8-dca0-498d-94a3-3b5fd70ad635" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db457822\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T09:23:31.7749059Z\",\r\n \"duration\": \"PT3M7.4976797S\",\r\n \"correlationId\": \"dfbbec5a-0c0d-4836-9081-e0d389d58dd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server457822/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server457822/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2588" + "622" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "f82b288c-876c-4c1f-9397-29faf4b69f1e" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14434" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "253b5371-d9f7-4be8-ae97-57b145315ea9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" ], "x-ms-correlation-request-id": [ - "253b5371-d9f7-4be8-ae97-57b145315ea9" + "843e86f0-c1b6-42a0-bdb3-84ccd7bc17e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092333Z:253b5371-d9f7-4be8-ae97-57b145315ea9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20151022T123418Z:843e86f0-c1b6-42a0-bdb3-84ccd7bc17e5" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:33 GMT" + "Thu, 22 Oct 2015 12:34:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 @@ -4792,19 +4282,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4c61eaef-f568-4858-bf55-1300d19df874" + "51d359c1-8035-4de0-a697-712621e42e6b" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "75b9470d-a915-4eac-a021-a633f1f5c850" + "ca7d0f55-d539-472d-bbbe-eccc35ab2103" ], "X-Content-Type-Options": [ "nosniff" @@ -4816,19 +4306,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14519" + "14845" ], "x-ms-correlation-request-id": [ - "85b0929a-c4d3-4822-98b5-19a15e68ac50" + "395a9201-d7ed-4e47-9148-c1540cbd07e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092343Z:85b0929a-c4d3-4822-98b5-19a15e68ac50" + "NORTHEUROPE:20151022T123422Z:395a9201-d7ed-4e47-9148-c1540cbd07e6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:43 GMT" + "Thu, 22 Oct 2015 12:34:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4846,19 +4336,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70e08b57-8119-4756-a207-fb8340ecdcf5" + "9cbd9a3e-cd5c-4500-8470-30918cd08caa" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "be0476c3-5c0b-4250-bb79-b36045f1be14" + "3f0893f5-4328-4c35-a007-33371056017f" ], "X-Content-Type-Options": [ "nosniff" @@ -4870,19 +4360,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14518" + "14844" ], "x-ms-correlation-request-id": [ - "df029239-8cbf-4682-981f-3d9cd1263ecf" + "579b513f-59b8-4e2b-891f-a406ffb6aeb5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092345Z:df029239-8cbf-4682-981f-3d9cd1263ecf" + "NORTHEUROPE:20151022T123425Z:579b513f-59b8-4e2b-891f-a406ffb6aeb5" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:45 GMT" + "Thu, 22 Oct 2015 12:34:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4900,19 +4390,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "658b0128-67a2-4027-ab84-c5be969bd3e9" + "6359ed5a-d5d8-4d3a-8ee4-5b948afb2dc9" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "609" + "12" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "123b741c-08a5-47f9-8501-e9db0926f554" + "6725e0d7-5079-43da-961a-889b1d32d940" ], "X-Content-Type-Options": [ "nosniff" @@ -4924,19 +4414,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14515" + "14842" ], "x-ms-correlation-request-id": [ - "5c370f24-16dd-4055-a767-78ba72662725" + "32dad28f-b3da-4570-8bd2-f8dd04ba243c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092354Z:5c370f24-16dd-4055-a767-78ba72662725" + "NORTHEUROPE:20151022T123435Z:32dad28f-b3da-4570-8bd2-f8dd04ba243c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:54 GMT" + "Thu, 22 Oct 2015 12:34:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4945,8 +4435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4954,19 +4444,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a8e29e6b-2e54-46b4-a019-b3b889bc531a" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"name\": \"sql-dm-cmdlet-server457822\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server457822.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "609" + "529" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1c123731-4766-4932-bb7b-943a5c70dd49" + "2892371b-e560-426e-9eb3-64b641ac7e3b" ], "X-Content-Type-Options": [ "nosniff" @@ -4974,23 +4464,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14513" + "14850" ], "x-ms-correlation-request-id": [ - "b7b6ecbb-74bd-4a4b-8424-7c39735cf938" + "dac94ec9-ac33-425b-8c98-b95148668728" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092358Z:b7b6ecbb-74bd-4a4b-8424-7c39735cf938" + "NORTHEUROPE:20151022T123407Z:dac94ec9-ac33-425b-8c98-b95148668728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:57 GMT" + "Thu, 22 Oct 2015 12:34:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4999,8 +4489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5008,19 +4498,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f7d9df87-715f-42b1-bb14-3e9712e36096" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"name\": \"sql-dm-cmdlet-server457822\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server457822.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "609" + "529" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "30ebc2cc-a9c5-4020-9921-7d1c2d0e82c9" + "7186d622-a5e4-4b56-bf9c-7afda372f535" ], "X-Content-Type-Options": [ "nosniff" @@ -5028,23 +4518,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" + "14849" ], "x-ms-correlation-request-id": [ - "b5ecfbe5-876a-4cdd-a520-a07ef31f3a6f" + "e8908971-bb9f-4a93-ae3b-6a0ec46ea6c4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092400Z:b5ecfbe5-876a-4cdd-a520-a07ef31f3a6f" + "NORTHEUROPE:20151022T123407Z:e8908971-bb9f-4a93-ae3b-6a0ec46ea6c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:24:00 GMT" + "Thu, 22 Oct 2015 12:34:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5053,8 +4543,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5062,19 +4552,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8809d0b2-af5e-4664-95fa-036fde79b04b" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"name\": \"sql-dm-cmdlet-server457822\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server457822.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "529" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f07cee61-fbc9-4aa4-b441-08b7b3b6304a" + "e2104699-7b04-424e-9406-042b8ea0b01f" ], "X-Content-Type-Options": [ "nosniff" @@ -5082,23 +4572,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" + "14847" ], "x-ms-correlation-request-id": [ - "c9998199-f653-4351-b3dc-c147b89c614a" + "c6395486-8668-46b3-8c76-a4119c37bdf5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092407Z:c9998199-f653-4351-b3dc-c147b89c614a" + "NORTHEUROPE:20151022T123409Z:c6395486-8668-46b3-8c76-a4119c37bdf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:24:06 GMT" + "Thu, 22 Oct 2015 12:34:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5107,8 +4597,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5116,19 +4606,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "544820c7-5310-456d-9091-4843df70bef4" + "9cbd9a3e-cd5c-4500-8470-30918cd08caa" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"name\": \"sql-dm-cmdlet-server457822\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server457822.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "529" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c00da7d4-7661-46ea-bd16-15f508152e72" + "761ba966-3be6-4456-bc36-97150254f712" ], "X-Content-Type-Options": [ "nosniff" @@ -5136,23 +4626,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14508" + "14843" ], "x-ms-correlation-request-id": [ - "8ae5f800-10a5-48a0-93c0-4cf6d3a88475" + "b18329e3-0886-4e22-a260-2125d3819f8e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092409Z:8ae5f800-10a5-48a0-93c0-4cf6d3a88475" + "NORTHEUROPE:20151022T123426Z:b18329e3-0886-4e22-a260-2125d3819f8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:24:08 GMT" + "Thu, 22 Oct 2015 12:34:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5170,7 +4660,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70e08b57-8119-4756-a207-fb8340ecdcf5" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", @@ -5182,7 +4672,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b843147d-0b3c-4986-bca3-4ed090612cc7" + "b164ca4d-937f-4f55-8b62-04a223c54908" ], "X-Content-Type-Options": [ "nosniff" @@ -5194,19 +4684,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14517" + "14848" ], "x-ms-correlation-request-id": [ - "6cc643dc-9ac8-4a81-b55d-0b959c2823a6" + "846e61b8-0249-491e-8438-0147afe46669" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092347Z:6cc643dc-9ac8-4a81-b55d-0b959c2823a6" + "NORTHEUROPE:20151022T123409Z:846e61b8-0249-491e-8438-0147afe46669" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:46 GMT" + "Thu, 22 Oct 2015 12:34:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5230,7 +4720,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70e08b57-8119-4756-a207-fb8340ecdcf5" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", @@ -5242,7 +4732,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ed318ee8-48ed-4e99-b195-5c59facb6d43" + "976f0eea-65ee-4484-9ef4-d5fcb5e6b204" ], "X-Content-Type-Options": [ "nosniff" @@ -5257,19 +4747,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-correlation-request-id": [ - "1194b1c6-f445-4507-aa0b-cdfe74661755" + "3a0ac1bc-cd7c-4a6e-9c4f-909a1505eb94" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092349Z:1194b1c6-f445-4507-aa0b-cdfe74661755" + "NORTHEUROPE:20151022T123412Z:3a0ac1bc-cd7c-4a6e-9c4f-909a1505eb94" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:49 GMT" + "Thu, 22 Oct 2015 12:34:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5278,34 +4768,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "208" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "70e08b57-8119-4756-a207-fb8340ecdcf5" + "992f97c0-1cc5-4b06-b7f0-bc20b198c0be" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "598" + "637" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4f3fc3f1-c4cd-4c20-95cb-f39afd82dd2f" + "71934078-ea91-4884-89c2-41d9795121f0" ], "X-Content-Type-Options": [ "nosniff" @@ -5320,19 +4810,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1196" ], "x-ms-correlation-request-id": [ - "55e66d47-5333-4584-9e7c-d2252ea0e792" + "e8d05a85-554f-4bbb-b662-b3b1b5e6f738" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092352Z:55e66d47-5333-4584-9e7c-d2252ea0e792" + "NORTHEUROPE:20151022T123416Z:e8d05a85-554f-4bbb-b662-b3b1b5e6f738" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:23:51 GMT" + "Thu, 22 Oct 2015 12:34:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5341,34 +4831,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "196" + "209" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f7d9df87-715f-42b1-bb14-3e9712e36096" + "9cbd9a3e-cd5c-4500-8470-30918cd08caa" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "599" + "638" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c5f6adb7-3f2d-4b4e-a777-41e503f74b90" + "933b903b-9bc9-4e43-a780-4f9f418bc031" ], "X-Content-Type-Options": [ "nosniff" @@ -5383,19 +4873,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-correlation-request-id": [ - "03bb62dc-2c54-4da1-ad9e-36440814b014" + "2e496c5c-c05b-4c97-81b2-45cc61cc5af4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092403Z:03bb62dc-2c54-4da1-ad9e-36440814b014" + "NORTHEUROPE:20151022T123431Z:2e496c5c-c05b-4c97-81b2-45cc61cc5af4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:24:03 GMT" + "Thu, 22 Oct 2015 12:34:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5404,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822/databases/sql-dm-cmdlet-db457822/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5413,7 +4903,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f7d9df87-715f-42b1-bb14-3e9712e36096" + "9cbd9a3e-cd5c-4500-8470-30918cd08caa" ] }, "ResponseBody": "", @@ -5425,7 +4915,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "9d8fe9f1-cf0b-432d-ac2f-04b1738d7e6a" + "33034d6c-b5c4-40d2-93b3-cc7b2e4d88d5" ], "X-Content-Type-Options": [ "nosniff" @@ -5437,19 +4927,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1194" ], "x-ms-correlation-request-id": [ - "d1d440c8-9f36-4341-b5f0-f7c0a83dad97" + "c4ae8e1b-c99b-4b5a-bb7b-ddc61a643012" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T092405Z:d1d440c8-9f36-4341-b5f0-f7c0a83dad97" + "NORTHEUROPE:20151022T123433Z:c4ae8e1b-c99b-4b5a-bb7b-ddc61a643012" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 09:24:04 GMT" + "Thu, 22 Oct 2015 12:34:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json index a70966225a1d..f24842a4390f 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14971" ], "x-ms-request-id": [ - "9636ed14-7e62-40f9-b8d4-7217e5ea4e3c" + "fa15c706-efbe-4524-be45-9b0831f03eaf" ], "x-ms-correlation-request-id": [ - "9636ed14-7e62-40f9-b8d4-7217e5ea4e3c" + "fa15c706-efbe-4524-be45-9b0831f03eaf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084606Z:9636ed14-7e62-40f9-b8d4-7217e5ea4e3c" + "NORTHEUROPE:20151022T121604Z:fa15c706-efbe-4524-be45-9b0831f03eaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:06 GMT" + "Thu, 22 Oct 2015 12:16:04 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "b3e1074b-d996-413e-a022-4b999217dc53" + "781a0c49-b1d3-452f-83f6-59f805efb9d9" ], "x-ms-correlation-request-id": [ - "b3e1074b-d996-413e-a022-4b999217dc53" + "781a0c49-b1d3-452f-83f6-59f805efb9d9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084610Z:b3e1074b-d996-413e-a022-4b999217dc53" + "NORTHEUROPE:20151022T121609Z:781a0c49-b1d3-452f-83f6-59f805efb9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:10 GMT" + "Thu, 22 Oct 2015 12:16:09 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14970" ], "x-ms-request-id": [ - "78fc7953-3bee-4597-9b5d-9c33ee5e7fe0" + "17923153-8b89-437c-960c-7fc1630fdb92" ], "x-ms-correlation-request-id": [ - "78fc7953-3bee-4597-9b5d-9c33ee5e7fe0" + "17923153-8b89-437c-960c-7fc1630fdb92" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084611Z:78fc7953-3bee-4597-9b5d-9c33ee5e7fe0" + "NORTHEUROPE:20151022T121609Z:17923153-8b89-437c-960c-7fc1630fdb92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:10 GMT" + "Thu, 22 Oct 2015 12:16:09 GMT" ] }, "StatusCode": 200 @@ -178,7 +178,7 @@ "no-cache" ], "x-ms-request-id": [ - "bb1b896f-dcb8-46b8-8aef-06d427fc3f20" + "70dda1aa-8619-4ada-9722-e8204952eb39" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_1" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" + "14972" ], "x-ms-correlation-request-id": [ - "b31f9bb1-2c4c-4894-96fc-b3c55ff5ed43" + "3fd39605-c62a-4d72-aa6e-6daf282df58a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084611Z:b31f9bb1-2c4c-4894-96fc-b3c55ff5ed43" + "NORTHEUROPE:20151022T121609Z:3fd39605-c62a-4d72-aa6e-6daf282df58a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:11 GMT" + "Thu, 22 Oct 2015 12:16:09 GMT" ], "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "x-ms-gateway-slice=productiona; path=/" ], "Server": [ "Microsoft-IIS/8.5" @@ -232,10 +232,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-14T08:46:16.5346771Z\",\r\n \"duration\": \"PT3.3509351S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-10-22T12:16:13.943867Z\",\r\n \"duration\": \"PT3.1468488S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2303" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -247,16 +247,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "d0144dbf-51d4-412b-8f39-839d110a520b" + "95083ef8-ba8a-4ff2-97d1-d93232c6ea2c" ], "x-ms-correlation-request-id": [ - "d0144dbf-51d4-412b-8f39-839d110a520b" + "95083ef8-ba8a-4ff2-97d1-d93232c6ea2c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084617Z:d0144dbf-51d4-412b-8f39-839d110a520b" + "NORTHEUROPE:20151022T121615Z:95083ef8-ba8a-4ff2-97d1-d93232c6ea2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:17 GMT" + "Thu, 22 Oct 2015 12:16:15 GMT" ] }, "StatusCode": 201 @@ -295,16 +295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14969" ], "x-ms-request-id": [ - "5bef4e4a-380f-4c49-97cf-4b98fef65ade" + "8c315618-543c-4067-83fa-449bb03e30f3" ], "x-ms-correlation-request-id": [ - "5bef4e4a-380f-4c49-97cf-4b98fef65ade" + "8c315618-543c-4067-83fa-449bb03e30f3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084619Z:5bef4e4a-380f-4c49-97cf-4b98fef65ade" + "NORTHEUROPE:20151022T121616Z:8c315618-543c-4067-83fa-449bb03e30f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,7 +313,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:18 GMT" + "Thu, 22 Oct 2015 12:16:16 GMT" ] }, "StatusCode": 200 @@ -343,16 +343,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14967" ], "x-ms-request-id": [ - "e1044bb1-3579-47c7-99c4-114c47cc19c8" + "9864d270-638a-4fb2-823d-8a5fa7d13ade" ], "x-ms-correlation-request-id": [ - "e1044bb1-3579-47c7-99c4-114c47cc19c8" + "9864d270-638a-4fb2-823d-8a5fa7d13ade" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084623Z:e1044bb1-3579-47c7-99c4-114c47cc19c8" + "NORTHEUROPE:20151022T121620Z:9864d270-638a-4fb2-823d-8a5fa7d13ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,7 +361,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:22 GMT" + "Thu, 22 Oct 2015 12:16:19 GMT" ] }, "StatusCode": 200 @@ -391,16 +391,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14965" ], "x-ms-request-id": [ - "e421e5f3-5c5f-4e12-a727-3dcc4af61ddb" + "ff95f776-3fda-421c-8596-9450eebfe125" ], "x-ms-correlation-request-id": [ - "e421e5f3-5c5f-4e12-a727-3dcc4af61ddb" + "ff95f776-3fda-421c-8596-9450eebfe125" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084626Z:e421e5f3-5c5f-4e12-a727-3dcc4af61ddb" + "NORTHEUROPE:20151022T121624Z:ff95f776-3fda-421c-8596-9450eebfe125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,7 +409,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:26 GMT" + "Thu, 22 Oct 2015 12:16:23 GMT" ] }, "StatusCode": 200 @@ -439,16 +439,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14962" ], "x-ms-request-id": [ - "38ec4a48-20d6-476d-8676-e130abd55eb0" + "3dd7c0c3-cb1f-44de-9f24-3b3ee65e2861" ], "x-ms-correlation-request-id": [ - "38ec4a48-20d6-476d-8676-e130abd55eb0" + "3dd7c0c3-cb1f-44de-9f24-3b3ee65e2861" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084630Z:38ec4a48-20d6-476d-8676-e130abd55eb0" + "NORTHEUROPE:20151022T121627Z:3dd7c0c3-cb1f-44de-9f24-3b3ee65e2861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,7 +457,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:30 GMT" + "Thu, 22 Oct 2015 12:16:26 GMT" ] }, "StatusCode": 200 @@ -487,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14960" ], "x-ms-request-id": [ - "b0833989-0b88-4492-95c1-9acf493c733e" + "f382ebc3-9f1d-4f33-8871-23fea2459d95" ], "x-ms-correlation-request-id": [ - "b0833989-0b88-4492-95c1-9acf493c733e" + "f382ebc3-9f1d-4f33-8871-23fea2459d95" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084634Z:b0833989-0b88-4492-95c1-9acf493c733e" + "NORTHEUROPE:20151022T121631Z:f382ebc3-9f1d-4f33-8871-23fea2459d95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +505,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:33 GMT" + "Thu, 22 Oct 2015 12:16:31 GMT" ] }, "StatusCode": 200 @@ -535,16 +535,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14958" ], "x-ms-request-id": [ - "927a98cf-ef67-4dd6-a9a8-882390b2a278" + "d56f1fbb-b905-4808-bccd-e87c08ffaada" ], "x-ms-correlation-request-id": [ - "927a98cf-ef67-4dd6-a9a8-882390b2a278" + "d56f1fbb-b905-4808-bccd-e87c08ffaada" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084638Z:927a98cf-ef67-4dd6-a9a8-882390b2a278" + "NORTHEUROPE:20151022T121635Z:d56f1fbb-b905-4808-bccd-e87c08ffaada" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +553,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:37 GMT" + "Thu, 22 Oct 2015 12:16:34 GMT" ] }, "StatusCode": 200 @@ -583,16 +583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14956" ], "x-ms-request-id": [ - "721d8475-0ab3-45a3-ba5e-91c5f1d24d75" + "4a51dca3-f2c1-4fa8-846d-75b9bb9a22e5" ], "x-ms-correlation-request-id": [ - "721d8475-0ab3-45a3-ba5e-91c5f1d24d75" + "4a51dca3-f2c1-4fa8-846d-75b9bb9a22e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084642Z:721d8475-0ab3-45a3-ba5e-91c5f1d24d75" + "NORTHEUROPE:20151022T121638Z:4a51dca3-f2c1-4fa8-846d-75b9bb9a22e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,7 +601,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:42 GMT" + "Thu, 22 Oct 2015 12:16:37 GMT" ] }, "StatusCode": 200 @@ -631,16 +631,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14954" ], "x-ms-request-id": [ - "40031bcd-8a1c-410b-8516-cb0d76a8e3fc" + "da70c2e8-493f-458f-8519-b9dcae6ab9f8" ], "x-ms-correlation-request-id": [ - "40031bcd-8a1c-410b-8516-cb0d76a8e3fc" + "da70c2e8-493f-458f-8519-b9dcae6ab9f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084645Z:40031bcd-8a1c-410b-8516-cb0d76a8e3fc" + "NORTHEUROPE:20151022T121642Z:da70c2e8-493f-458f-8519-b9dcae6ab9f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +649,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:45 GMT" + "Thu, 22 Oct 2015 12:16:42 GMT" ] }, "StatusCode": 200 @@ -679,16 +679,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14952" ], "x-ms-request-id": [ - "9c4b38e3-96ec-44b5-bf7a-bc1166ac5194" + "f1a26aee-bd76-4a1c-b35e-5f212e638a35" ], "x-ms-correlation-request-id": [ - "9c4b38e3-96ec-44b5-bf7a-bc1166ac5194" + "f1a26aee-bd76-4a1c-b35e-5f212e638a35" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084649Z:9c4b38e3-96ec-44b5-bf7a-bc1166ac5194" + "NORTHEUROPE:20151022T121646Z:f1a26aee-bd76-4a1c-b35e-5f212e638a35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +697,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:49 GMT" + "Thu, 22 Oct 2015 12:16:45 GMT" ] }, "StatusCode": 200 @@ -727,16 +727,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14950" ], "x-ms-request-id": [ - "75c12418-58e7-429f-a094-934faa9ff671" + "a4977927-cddc-4a04-bd1a-c92893cba43e" ], "x-ms-correlation-request-id": [ - "75c12418-58e7-429f-a094-934faa9ff671" + "a4977927-cddc-4a04-bd1a-c92893cba43e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084653Z:75c12418-58e7-429f-a094-934faa9ff671" + "NORTHEUROPE:20151022T121649Z:a4977927-cddc-4a04-bd1a-c92893cba43e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,7 +745,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:53 GMT" + "Thu, 22 Oct 2015 12:16:49 GMT" ] }, "StatusCode": 200 @@ -775,16 +775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14948" ], "x-ms-request-id": [ - "8c2777ec-1d5d-40ef-8eeb-86818b569abe" + "206b5d0f-2f62-4d36-b1ec-1f8ac9b1ca70" ], "x-ms-correlation-request-id": [ - "8c2777ec-1d5d-40ef-8eeb-86818b569abe" + "206b5d0f-2f62-4d36-b1ec-1f8ac9b1ca70" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084657Z:8c2777ec-1d5d-40ef-8eeb-86818b569abe" + "NORTHEUROPE:20151022T121653Z:206b5d0f-2f62-4d36-b1ec-1f8ac9b1ca70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +793,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:56 GMT" + "Thu, 22 Oct 2015 12:16:52 GMT" ] }, "StatusCode": 200 @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14946" ], "x-ms-request-id": [ - "e0879992-d4ae-40d7-a84f-18c7ebe1cd37" + "bed31e7f-e3b3-4829-accf-cd8d7ccdb27e" ], "x-ms-correlation-request-id": [ - "e0879992-d4ae-40d7-a84f-18c7ebe1cd37" + "bed31e7f-e3b3-4829-accf-cd8d7ccdb27e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084700Z:e0879992-d4ae-40d7-a84f-18c7ebe1cd37" + "NORTHEUROPE:20151022T121657Z:bed31e7f-e3b3-4829-accf-cd8d7ccdb27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:00 GMT" + "Thu, 22 Oct 2015 12:16:57 GMT" ] }, "StatusCode": 200 @@ -871,16 +871,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14944" ], "x-ms-request-id": [ - "933db883-e21a-4c69-9797-26c8971e6818" + "53d2dbac-d6cb-49c4-b849-b7573cf32430" ], "x-ms-correlation-request-id": [ - "933db883-e21a-4c69-9797-26c8971e6818" + "53d2dbac-d6cb-49c4-b849-b7573cf32430" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084704Z:933db883-e21a-4c69-9797-26c8971e6818" + "NORTHEUROPE:20151022T121700Z:53d2dbac-d6cb-49c4-b849-b7573cf32430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,7 +889,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:04 GMT" + "Thu, 22 Oct 2015 12:17:00 GMT" ] }, "StatusCode": 200 @@ -919,16 +919,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14942" ], "x-ms-request-id": [ - "d61ffc20-5c31-4f2b-bf77-f69f7f1cb234" + "134e86ed-1c49-4256-a19b-7d5028d4279a" ], "x-ms-correlation-request-id": [ - "d61ffc20-5c31-4f2b-bf77-f69f7f1cb234" + "134e86ed-1c49-4256-a19b-7d5028d4279a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084708Z:d61ffc20-5c31-4f2b-bf77-f69f7f1cb234" + "NORTHEUROPE:20151022T121704Z:134e86ed-1c49-4256-a19b-7d5028d4279a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,7 +937,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:07 GMT" + "Thu, 22 Oct 2015 12:17:04 GMT" ] }, "StatusCode": 200 @@ -967,16 +967,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "14940" ], "x-ms-request-id": [ - "5d6195c4-7c50-4136-957f-26bfc3134b4d" + "35fe4d40-c564-45d7-bd83-5968ffab1de5" ], "x-ms-correlation-request-id": [ - "5d6195c4-7c50-4136-957f-26bfc3134b4d" + "35fe4d40-c564-45d7-bd83-5968ffab1de5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084712Z:5d6195c4-7c50-4136-957f-26bfc3134b4d" + "NORTHEUROPE:20151022T121708Z:35fe4d40-c564-45d7-bd83-5968ffab1de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,7 +985,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:11 GMT" + "Thu, 22 Oct 2015 12:17:07 GMT" ] }, "StatusCode": 200 @@ -1015,16 +1015,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14938" ], "x-ms-request-id": [ - "264e39e2-c315-4b0b-98c4-2a5fe7641963" + "f3a2937b-b53d-4aee-945b-241671912b9c" ], "x-ms-correlation-request-id": [ - "264e39e2-c315-4b0b-98c4-2a5fe7641963" + "f3a2937b-b53d-4aee-945b-241671912b9c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084715Z:264e39e2-c315-4b0b-98c4-2a5fe7641963" + "NORTHEUROPE:20151022T121711Z:f3a2937b-b53d-4aee-945b-241671912b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +1033,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:15 GMT" + "Thu, 22 Oct 2015 12:17:11 GMT" ] }, "StatusCode": 200 @@ -1063,16 +1063,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14936" ], "x-ms-request-id": [ - "611e3607-0a70-48c8-b75a-f19bef55432d" + "0cf93176-c9d3-411d-a4f6-ac57b37b476f" ], "x-ms-correlation-request-id": [ - "611e3607-0a70-48c8-b75a-f19bef55432d" + "0cf93176-c9d3-411d-a4f6-ac57b37b476f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084719Z:611e3607-0a70-48c8-b75a-f19bef55432d" + "NORTHEUROPE:20151022T121715Z:0cf93176-c9d3-411d-a4f6-ac57b37b476f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1081,7 +1081,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:18 GMT" + "Thu, 22 Oct 2015 12:17:15 GMT" ] }, "StatusCode": 200 @@ -1111,16 +1111,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14934" ], "x-ms-request-id": [ - "d63cd0a1-3541-49d0-bf0f-81860665567e" + "6585273e-0354-4284-b328-8c26da283cae" ], "x-ms-correlation-request-id": [ - "d63cd0a1-3541-49d0-bf0f-81860665567e" + "6585273e-0354-4284-b328-8c26da283cae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084723Z:d63cd0a1-3541-49d0-bf0f-81860665567e" + "NORTHEUROPE:20151022T121719Z:6585273e-0354-4284-b328-8c26da283cae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1129,7 +1129,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:22 GMT" + "Thu, 22 Oct 2015 12:17:18 GMT" ] }, "StatusCode": 200 @@ -1144,10 +1144,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "663" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1159,16 +1159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "14932" ], "x-ms-request-id": [ - "e205c784-eb4b-4b6d-95a6-816a60b5968d" + "488e8e15-e01c-4f5b-bf76-21ed2f6ce36a" ], "x-ms-correlation-request-id": [ - "e205c784-eb4b-4b6d-95a6-816a60b5968d" + "488e8e15-e01c-4f5b-bf76-21ed2f6ce36a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084727Z:e205c784-eb4b-4b6d-95a6-816a60b5968d" + "NORTHEUROPE:20151022T121723Z:488e8e15-e01c-4f5b-bf76-21ed2f6ce36a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,7 +1177,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:26 GMT" + "Thu, 22 Oct 2015 12:17:23 GMT" ] }, "StatusCode": 200 @@ -1192,10 +1192,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1207,16 +1207,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14930" ], "x-ms-request-id": [ - "0af55761-87c3-4e75-87ab-5eac8ceed5f9" + "23cd5a4f-5911-4edb-a023-482a68d85049" ], "x-ms-correlation-request-id": [ - "0af55761-87c3-4e75-87ab-5eac8ceed5f9" + "23cd5a4f-5911-4edb-a023-482a68d85049" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084731Z:0af55761-87c3-4e75-87ab-5eac8ceed5f9" + "NORTHEUROPE:20151022T121727Z:23cd5a4f-5911-4edb-a023-482a68d85049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1225,7 +1225,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:30 GMT" + "Thu, 22 Oct 2015 12:17:26 GMT" ] }, "StatusCode": 200 @@ -1240,10 +1240,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1255,16 +1255,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14686" + "14928" ], "x-ms-request-id": [ - "d88978d3-7e7c-4537-94a3-b567731eaf04" + "4ab336da-72ce-421b-8478-c061f5cae67e" ], "x-ms-correlation-request-id": [ - "d88978d3-7e7c-4537-94a3-b567731eaf04" + "4ab336da-72ce-421b-8478-c061f5cae67e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084735Z:d88978d3-7e7c-4537-94a3-b567731eaf04" + "NORTHEUROPE:20151022T121731Z:4ab336da-72ce-421b-8478-c061f5cae67e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:34 GMT" + "Thu, 22 Oct 2015 12:17:31 GMT" ] }, "StatusCode": 200 @@ -1288,10 +1288,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1303,16 +1303,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" + "14926" ], "x-ms-request-id": [ - "6aa723cd-8b8f-4de7-90e8-32fd42048782" + "affd884a-fd89-40fb-bea9-a1dadf9d353a" ], "x-ms-correlation-request-id": [ - "6aa723cd-8b8f-4de7-90e8-32fd42048782" + "affd884a-fd89-40fb-bea9-a1dadf9d353a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084739Z:6aa723cd-8b8f-4de7-90e8-32fd42048782" + "NORTHEUROPE:20151022T121735Z:affd884a-fd89-40fb-bea9-a1dadf9d353a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,7 +1321,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:38 GMT" + "Thu, 22 Oct 2015 12:17:34 GMT" ] }, "StatusCode": 200 @@ -1336,10 +1336,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1351,16 +1351,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" + "14924" ], "x-ms-request-id": [ - "28eb9e61-dda9-4bc1-b77b-49de0f4c8711" + "025eacda-44b4-40ef-8b71-c4f21aa4d4f4" ], "x-ms-correlation-request-id": [ - "28eb9e61-dda9-4bc1-b77b-49de0f4c8711" + "025eacda-44b4-40ef-8b71-c4f21aa4d4f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084743Z:28eb9e61-dda9-4bc1-b77b-49de0f4c8711" + "NORTHEUROPE:20151022T121739Z:025eacda-44b4-40ef-8b71-c4f21aa4d4f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1369,7 +1369,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:43 GMT" + "Thu, 22 Oct 2015 12:17:38 GMT" ] }, "StatusCode": 200 @@ -1384,10 +1384,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1399,16 +1399,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14677" + "14922" ], "x-ms-request-id": [ - "a0e7ffe3-e07a-4e61-a5f1-e34a94d7760f" + "94e298b4-629b-4cfb-8c0c-403cf1c48358" ], "x-ms-correlation-request-id": [ - "a0e7ffe3-e07a-4e61-a5f1-e34a94d7760f" + "94e298b4-629b-4cfb-8c0c-403cf1c48358" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084747Z:a0e7ffe3-e07a-4e61-a5f1-e34a94d7760f" + "NORTHEUROPE:20151022T121743Z:94e298b4-629b-4cfb-8c0c-403cf1c48358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1417,7 +1417,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:47 GMT" + "Thu, 22 Oct 2015 12:17:43 GMT" ] }, "StatusCode": 200 @@ -1432,10 +1432,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1447,16 +1447,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14675" + "14920" ], "x-ms-request-id": [ - "de6ba3a4-ab38-4c85-b843-a65b9cb31e94" + "17107588-68a8-4b1e-8b24-fe391f6580c3" ], "x-ms-correlation-request-id": [ - "de6ba3a4-ab38-4c85-b843-a65b9cb31e94" + "17107588-68a8-4b1e-8b24-fe391f6580c3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084751Z:de6ba3a4-ab38-4c85-b843-a65b9cb31e94" + "NORTHEUROPE:20151022T121747Z:17107588-68a8-4b1e-8b24-fe391f6580c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,7 +1465,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:51 GMT" + "Thu, 22 Oct 2015 12:17:46 GMT" ] }, "StatusCode": 200 @@ -1480,10 +1480,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1495,16 +1495,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" + "14918" ], "x-ms-request-id": [ - "2fff581d-3a84-4e4a-8534-09c2d04e613f" + "8d96cd95-f84e-42ff-8bf4-b489cc6bf8c7" ], "x-ms-correlation-request-id": [ - "2fff581d-3a84-4e4a-8534-09c2d04e613f" + "8d96cd95-f84e-42ff-8bf4-b489cc6bf8c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084755Z:2fff581d-3a84-4e4a-8534-09c2d04e613f" + "NORTHEUROPE:20151022T121751Z:8d96cd95-f84e-42ff-8bf4-b489cc6bf8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1513,7 +1513,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:55 GMT" + "Thu, 22 Oct 2015 12:17:50 GMT" ] }, "StatusCode": 200 @@ -1528,10 +1528,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1543,16 +1543,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14916" ], "x-ms-request-id": [ - "74a7c9a5-66ea-4c76-9f3d-74825c8cb94a" + "fd39a30c-62b9-4d16-bce6-44c34f5d4e20" ], "x-ms-correlation-request-id": [ - "74a7c9a5-66ea-4c76-9f3d-74825c8cb94a" + "fd39a30c-62b9-4d16-bce6-44c34f5d4e20" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084759Z:74a7c9a5-66ea-4c76-9f3d-74825c8cb94a" + "NORTHEUROPE:20151022T121754Z:fd39a30c-62b9-4d16-bce6-44c34f5d4e20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1561,7 +1561,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:59 GMT" + "Thu, 22 Oct 2015 12:17:53 GMT" ] }, "StatusCode": 200 @@ -1576,10 +1576,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1591,16 +1591,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14914" ], "x-ms-request-id": [ - "b0d66f20-1281-452d-99c3-baa13c7994e6" + "7145ab2c-65e2-4ed6-ad0a-03ded3791f72" ], "x-ms-correlation-request-id": [ - "b0d66f20-1281-452d-99c3-baa13c7994e6" + "7145ab2c-65e2-4ed6-ad0a-03ded3791f72" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084803Z:b0d66f20-1281-452d-99c3-baa13c7994e6" + "NORTHEUROPE:20151022T121758Z:7145ab2c-65e2-4ed6-ad0a-03ded3791f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1609,7 +1609,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:03 GMT" + "Thu, 22 Oct 2015 12:17:58 GMT" ] }, "StatusCode": 200 @@ -1624,10 +1624,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:47:37.2915318Z\",\r\n \"duration\": \"PT10.2784159S\",\r\n \"trackingId\": \"29e4cd4d-0d9d-4ced-b95e-1d41972ce75d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,16 +1639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" + "14912" ], "x-ms-request-id": [ - "b16dd1e7-bd0e-45db-b626-3080d1636cd8" + "8f97faa3-139a-47f0-a9c1-681fba2c6561" ], "x-ms-correlation-request-id": [ - "b16dd1e7-bd0e-45db-b626-3080d1636cd8" + "8f97faa3-139a-47f0-a9c1-681fba2c6561" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084807Z:b16dd1e7-bd0e-45db-b626-3080d1636cd8" + "NORTHEUROPE:20151022T121802Z:8f97faa3-139a-47f0-a9c1-681fba2c6561" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1657,7 +1657,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:07 GMT" + "Thu, 22 Oct 2015 12:18:02 GMT" ] }, "StatusCode": 200 @@ -1672,10 +1672,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:09.0676127Z\",\r\n \"duration\": \"PT42.0544968S\",\r\n \"trackingId\": \"8cb49a84-a430-405c-9e0d-68ede40127c9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1687,16 +1687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" + "14910" ], "x-ms-request-id": [ - "b909c979-bc09-42ad-90ac-089842ecf680" + "6f32dab2-e818-4507-a099-7c6c08bdfdc7" ], "x-ms-correlation-request-id": [ - "b909c979-bc09-42ad-90ac-089842ecf680" + "6f32dab2-e818-4507-a099-7c6c08bdfdc7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084811Z:b909c979-bc09-42ad-90ac-089842ecf680" + "NORTHEUROPE:20151022T121806Z:6f32dab2-e818-4507-a099-7c6c08bdfdc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1705,7 +1705,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:11 GMT" + "Thu, 22 Oct 2015 12:18:06 GMT" ] }, "StatusCode": 200 @@ -1720,10 +1720,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:09.0676127Z\",\r\n \"duration\": \"PT42.0544968S\",\r\n \"trackingId\": \"8cb49a84-a430-405c-9e0d-68ede40127c9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1735,16 +1735,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14661" + "14908" ], "x-ms-request-id": [ - "a5a7c751-7fae-4e20-8b6b-279a749153a5" + "74d322f4-e45e-4f51-9c5c-615897daf93d" ], "x-ms-correlation-request-id": [ - "a5a7c751-7fae-4e20-8b6b-279a749153a5" + "74d322f4-e45e-4f51-9c5c-615897daf93d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084815Z:a5a7c751-7fae-4e20-8b6b-279a749153a5" + "NORTHEUROPE:20151022T121810Z:74d322f4-e45e-4f51-9c5c-615897daf93d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,7 +1753,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:15 GMT" + "Thu, 22 Oct 2015 12:18:10 GMT" ] }, "StatusCode": 200 @@ -1768,10 +1768,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:09.0676127Z\",\r\n \"duration\": \"PT42.0544968S\",\r\n \"trackingId\": \"8cb49a84-a430-405c-9e0d-68ede40127c9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1783,16 +1783,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "14906" ], "x-ms-request-id": [ - "89f3e53a-5179-41d7-8364-763236b1e5ff" + "510d951b-8662-44e0-ac6f-9cd095bf75e7" ], "x-ms-correlation-request-id": [ - "89f3e53a-5179-41d7-8364-763236b1e5ff" + "510d951b-8662-44e0-ac6f-9cd095bf75e7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084819Z:89f3e53a-5179-41d7-8364-763236b1e5ff" + "NORTHEUROPE:20151022T121814Z:510d951b-8662-44e0-ac6f-9cd095bf75e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1801,7 +1801,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:19 GMT" + "Thu, 22 Oct 2015 12:18:14 GMT" ] }, "StatusCode": 200 @@ -1816,10 +1816,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:09.0676127Z\",\r\n \"duration\": \"PT42.0544968S\",\r\n \"trackingId\": \"8cb49a84-a430-405c-9e0d-68ede40127c9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2103" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1831,16 +1831,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14657" + "14904" ], "x-ms-request-id": [ - "fc09d168-f259-40ea-95eb-e32f25013331" + "e5d8ecbb-fb41-44cd-ae98-54f0deb49eee" ], "x-ms-correlation-request-id": [ - "fc09d168-f259-40ea-95eb-e32f25013331" + "e5d8ecbb-fb41-44cd-ae98-54f0deb49eee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084823Z:fc09d168-f259-40ea-95eb-e32f25013331" + "NORTHEUROPE:20151022T121818Z:e5d8ecbb-fb41-44cd-ae98-54f0deb49eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1849,7 +1849,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:23 GMT" + "Thu, 22 Oct 2015 12:18:17 GMT" ] }, "StatusCode": 200 @@ -1864,10 +1864,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:27.3261191Z\",\r\n \"duration\": \"PT1M0.3130032S\",\r\n \"trackingId\": \"b32a91d2-23a7-4b0e-b382-6ecd879577dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1879,16 +1879,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14655" + "14902" ], "x-ms-request-id": [ - "d3e0de39-e43b-43f2-8b03-2b02d075f7fb" + "93aa5643-97c8-46e0-9e10-23bbcc9edc1d" ], "x-ms-correlation-request-id": [ - "d3e0de39-e43b-43f2-8b03-2b02d075f7fb" + "93aa5643-97c8-46e0-9e10-23bbcc9edc1d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084828Z:d3e0de39-e43b-43f2-8b03-2b02d075f7fb" + "NORTHEUROPE:20151022T121822Z:93aa5643-97c8-46e0-9e10-23bbcc9edc1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,7 +1897,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:28 GMT" + "Thu, 22 Oct 2015 12:18:21 GMT" ] }, "StatusCode": 200 @@ -1912,10 +1912,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:27.3261191Z\",\r\n \"duration\": \"PT1M0.3130032S\",\r\n \"trackingId\": \"b32a91d2-23a7-4b0e-b382-6ecd879577dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1927,16 +1927,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14652" + "14900" ], "x-ms-request-id": [ - "79691a62-f318-4fe6-80bf-4e7a2c209970" + "4f79f2b1-9295-4e07-9f7f-ea16ef6f7e4d" ], "x-ms-correlation-request-id": [ - "79691a62-f318-4fe6-80bf-4e7a2c209970" + "4f79f2b1-9295-4e07-9f7f-ea16ef6f7e4d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084833Z:79691a62-f318-4fe6-80bf-4e7a2c209970" + "NORTHEUROPE:20151022T121826Z:4f79f2b1-9295-4e07-9f7f-ea16ef6f7e4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1945,7 +1945,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:32 GMT" + "Thu, 22 Oct 2015 12:18:26 GMT" ] }, "StatusCode": 200 @@ -1960,10 +1960,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:27.3261191Z\",\r\n \"duration\": \"PT1M0.3130032S\",\r\n \"trackingId\": \"b32a91d2-23a7-4b0e-b382-6ecd879577dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1975,16 +1975,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14650" + "14898" ], "x-ms-request-id": [ - "4d717a06-7334-45fa-b5e3-ffa3147128d4" + "cb20fd56-6650-459c-9c6f-a09ce80e50ee" ], "x-ms-correlation-request-id": [ - "4d717a06-7334-45fa-b5e3-ffa3147128d4" + "cb20fd56-6650-459c-9c6f-a09ce80e50ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084837Z:4d717a06-7334-45fa-b5e3-ffa3147128d4" + "NORTHEUROPE:20151022T121830Z:cb20fd56-6650-459c-9c6f-a09ce80e50ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1993,7 +1993,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:36 GMT" + "Thu, 22 Oct 2015 12:18:30 GMT" ] }, "StatusCode": 200 @@ -2008,10 +2008,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:27.3261191Z\",\r\n \"duration\": \"PT1M0.3130032S\",\r\n \"trackingId\": \"b32a91d2-23a7-4b0e-b382-6ecd879577dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:17:22.760856Z\",\r\n \"duration\": \"PT1M7.6998232S\",\r\n \"trackingId\": \"517a539d-19ae-443e-b340-bc3752c19bb5\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2023,16 +2023,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" + "14896" ], "x-ms-request-id": [ - "0239417f-604c-4918-9497-11d90be05fd3" + "481d8f3e-c23a-4972-8feb-75f07fb13b9c" ], "x-ms-correlation-request-id": [ - "0239417f-604c-4918-9497-11d90be05fd3" + "481d8f3e-c23a-4972-8feb-75f07fb13b9c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084841Z:0239417f-604c-4918-9497-11d90be05fd3" + "NORTHEUROPE:20151022T121834Z:481d8f3e-c23a-4972-8feb-75f07fb13b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2041,7 +2041,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:40 GMT" + "Thu, 22 Oct 2015 12:18:34 GMT" ] }, "StatusCode": 200 @@ -2056,10 +2056,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:48:27.3261191Z\",\r\n \"duration\": \"PT1M0.3130032S\",\r\n \"trackingId\": \"b32a91d2-23a7-4b0e-b382-6ecd879577dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2104" + "659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2071,16 +2071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" + "14894" ], "x-ms-request-id": [ - "90ebb351-34a7-4e7a-92f0-e29226b0e1dd" + "d335dc6b-7767-459c-bfe7-c19f40d9591a" ], "x-ms-correlation-request-id": [ - "90ebb351-34a7-4e7a-92f0-e29226b0e1dd" + "d335dc6b-7767-459c-bfe7-c19f40d9591a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084845Z:90ebb351-34a7-4e7a-92f0-e29226b0e1dd" + "NORTHEUROPE:20151022T121837Z:d335dc6b-7767-459c-bfe7-c19f40d9591a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,7 +2089,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:44 GMT" + "Thu, 22 Oct 2015 12:18:37 GMT" ] }, "StatusCode": 200 @@ -2104,10 +2104,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:48:45.6369917Z\",\r\n \"duration\": \"PT1M18.6238758S\",\r\n \"trackingId\": \"085bc5a4-8318-4328-8aa0-e337aa046069\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:29.2852019Z\",\r\n \"duration\": \"PT2.1068679S\",\r\n \"trackingId\": \"05b570bf-7ce5-4e97-b5d9-137ffe2d1005\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:47:26.8788727Z\",\r\n \"duration\": \"PT1M8.3457288S\",\r\n \"trackingId\": \"ff0459b1-457a-4c79-bbd9-c885e94455c2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2106" + "1385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2119,16 +2119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" + "14892" ], "x-ms-request-id": [ - "5856b240-f4fd-414a-896b-2d980c97cbf6" + "9972650a-44db-44e6-a12b-dbb9f955bac8" ], "x-ms-correlation-request-id": [ - "5856b240-f4fd-414a-896b-2d980c97cbf6" + "9972650a-44db-44e6-a12b-dbb9f955bac8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084849Z:5856b240-f4fd-414a-896b-2d980c97cbf6" + "NORTHEUROPE:20151022T121841Z:9972650a-44db-44e6-a12b-dbb9f955bac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,14 +2137,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:49 GMT" + "Thu, 22 Oct 2015 12:18:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2152,10 +2152,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "1385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2167,16 +2167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14889" ], "x-ms-request-id": [ - "6d86bcd3-0b7d-4765-9592-4bfd6ecb13e0" + "f9c251b5-38ef-4e69-8cdc-e1b6f2314bf4" ], "x-ms-correlation-request-id": [ - "6d86bcd3-0b7d-4765-9592-4bfd6ecb13e0" + "f9c251b5-38ef-4e69-8cdc-e1b6f2314bf4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084620Z:6d86bcd3-0b7d-4765-9592-4bfd6ecb13e0" + "NORTHEUROPE:20151022T121845Z:f9c251b5-38ef-4e69-8cdc-e1b6f2314bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2185,14 +2185,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:19 GMT" + "Thu, 22 Oct 2015 12:18:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,10 +2200,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2215,16 +2215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14887" ], "x-ms-request-id": [ - "349af017-4fb1-4025-a857-2ac4b05bc8c8" + "c4249c04-6e35-4767-8a90-18a65c6c049d" ], "x-ms-correlation-request-id": [ - "349af017-4fb1-4025-a857-2ac4b05bc8c8" + "c4249c04-6e35-4767-8a90-18a65c6c049d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084623Z:349af017-4fb1-4025-a857-2ac4b05bc8c8" + "NORTHEUROPE:20151022T121849Z:c4249c04-6e35-4767-8a90-18a65c6c049d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,14 +2233,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:23 GMT" + "Thu, 22 Oct 2015 12:18:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2248,10 +2248,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2263,16 +2263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14885" ], "x-ms-request-id": [ - "b6d7bea2-c48e-4b19-9865-de03e456d3bf" + "fd92c98e-d162-4795-bedc-4294e5863971" ], "x-ms-correlation-request-id": [ - "b6d7bea2-c48e-4b19-9865-de03e456d3bf" + "fd92c98e-d162-4795-bedc-4294e5863971" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084627Z:b6d7bea2-c48e-4b19-9865-de03e456d3bf" + "NORTHEUROPE:20151022T121853Z:fd92c98e-d162-4795-bedc-4294e5863971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2281,14 +2281,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:26 GMT" + "Thu, 22 Oct 2015 12:18:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2296,10 +2296,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2311,16 +2311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14883" ], "x-ms-request-id": [ - "065b671b-0ce9-4016-bd17-66d44fb1c977" + "487b0419-d863-47a8-a5d6-6e706ce45f4d" ], "x-ms-correlation-request-id": [ - "065b671b-0ce9-4016-bd17-66d44fb1c977" + "487b0419-d863-47a8-a5d6-6e706ce45f4d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084631Z:065b671b-0ce9-4016-bd17-66d44fb1c977" + "NORTHEUROPE:20151022T121857Z:487b0419-d863-47a8-a5d6-6e706ce45f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2329,14 +2329,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:30 GMT" + "Thu, 22 Oct 2015 12:18:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2344,10 +2344,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,16 +2359,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14881" ], "x-ms-request-id": [ - "5d1e5f0b-5af7-4e99-be7a-a4966bd040b9" + "fbc7c08b-22e7-4b25-80da-dd7408f3190e" ], "x-ms-correlation-request-id": [ - "5d1e5f0b-5af7-4e99-be7a-a4966bd040b9" + "fbc7c08b-22e7-4b25-80da-dd7408f3190e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084635Z:5d1e5f0b-5af7-4e99-be7a-a4966bd040b9" + "NORTHEUROPE:20151022T121901Z:fbc7c08b-22e7-4b25-80da-dd7408f3190e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2377,14 +2377,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:34 GMT" + "Thu, 22 Oct 2015 12:19:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2392,10 +2392,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2407,16 +2407,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14879" ], "x-ms-request-id": [ - "b8c845ce-5b29-411e-8fc5-28913ecaa7e2" + "c7bda5c9-295f-4e03-956c-5e391fd66aba" ], "x-ms-correlation-request-id": [ - "b8c845ce-5b29-411e-8fc5-28913ecaa7e2" + "c7bda5c9-295f-4e03-956c-5e391fd66aba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084639Z:b8c845ce-5b29-411e-8fc5-28913ecaa7e2" + "NORTHEUROPE:20151022T121905Z:c7bda5c9-295f-4e03-956c-5e391fd66aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2425,14 +2425,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:38 GMT" + "Thu, 22 Oct 2015 12:19:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2440,10 +2440,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,16 +2455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14877" ], "x-ms-request-id": [ - "06a7d709-d623-4364-8dfc-96fcd7c1364f" + "89f70f8c-5a77-4e0e-9f72-288d5314c4bd" ], "x-ms-correlation-request-id": [ - "06a7d709-d623-4364-8dfc-96fcd7c1364f" + "89f70f8c-5a77-4e0e-9f72-288d5314c4bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084642Z:06a7d709-d623-4364-8dfc-96fcd7c1364f" + "NORTHEUROPE:20151022T121909Z:89f70f8c-5a77-4e0e-9f72-288d5314c4bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2473,14 +2473,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:42 GMT" + "Thu, 22 Oct 2015 12:19:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2488,10 +2488,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2503,16 +2503,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14875" ], "x-ms-request-id": [ - "a47b22b3-a6eb-4027-bf6e-9de372d0d704" + "7c580244-9bbb-4da1-9f9c-168af6dbf3f7" ], "x-ms-correlation-request-id": [ - "a47b22b3-a6eb-4027-bf6e-9de372d0d704" + "7c580244-9bbb-4da1-9f9c-168af6dbf3f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084646Z:a47b22b3-a6eb-4027-bf6e-9de372d0d704" + "NORTHEUROPE:20151022T121913Z:7c580244-9bbb-4da1-9f9c-168af6dbf3f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,14 +2521,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:46 GMT" + "Thu, 22 Oct 2015 12:19:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2536,10 +2536,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:18:47.3937488Z\",\r\n \"duration\": \"PT11.0408707S\",\r\n \"trackingId\": \"4ee555aa-40d9-49e8-a177-b513f5d12dca\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,16 +2551,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14873" ], "x-ms-request-id": [ - "c9b26f65-12aa-42cb-9392-4357bf7efb8d" + "085528b5-0bf3-4a03-a270-76954384d7ee" ], "x-ms-correlation-request-id": [ - "c9b26f65-12aa-42cb-9392-4357bf7efb8d" + "085528b5-0bf3-4a03-a270-76954384d7ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084650Z:c9b26f65-12aa-42cb-9392-4357bf7efb8d" + "NORTHEUROPE:20151022T121917Z:085528b5-0bf3-4a03-a270-76954384d7ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2569,14 +2569,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:50 GMT" + "Thu, 22 Oct 2015 12:19:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,10 +2584,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:18.222091Z\",\r\n \"duration\": \"PT41.8692129S\",\r\n \"trackingId\": \"ff800198-104d-448e-9df6-9a33bc96ca8f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2098" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,16 +2599,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14871" ], "x-ms-request-id": [ - "a9ac783c-a98f-4166-845e-aaf564bd8b72" + "b1c9ede0-15da-43e4-bf3e-3a520aaef481" ], "x-ms-correlation-request-id": [ - "a9ac783c-a98f-4166-845e-aaf564bd8b72" + "b1c9ede0-15da-43e4-bf3e-3a520aaef481" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084653Z:a9ac783c-a98f-4166-845e-aaf564bd8b72" + "NORTHEUROPE:20151022T121921Z:b1c9ede0-15da-43e4-bf3e-3a520aaef481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2617,14 +2617,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:53 GMT" + "Thu, 22 Oct 2015 12:19:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2632,10 +2632,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:18.222091Z\",\r\n \"duration\": \"PT41.8692129S\",\r\n \"trackingId\": \"ff800198-104d-448e-9df6-9a33bc96ca8f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2098" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2647,16 +2647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14869" ], "x-ms-request-id": [ - "485064d1-dc97-4d96-9178-4d88e9ab2fd5" + "c6be142c-93d2-4d47-864a-8cbcc3ad2503" ], "x-ms-correlation-request-id": [ - "485064d1-dc97-4d96-9178-4d88e9ab2fd5" + "c6be142c-93d2-4d47-864a-8cbcc3ad2503" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084657Z:485064d1-dc97-4d96-9178-4d88e9ab2fd5" + "NORTHEUROPE:20151022T121925Z:c6be142c-93d2-4d47-864a-8cbcc3ad2503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,14 +2665,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:46:57 GMT" + "Thu, 22 Oct 2015 12:19:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2680,10 +2680,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:18.222091Z\",\r\n \"duration\": \"PT41.8692129S\",\r\n \"trackingId\": \"ff800198-104d-448e-9df6-9a33bc96ca8f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2098" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,16 +2695,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14867" ], "x-ms-request-id": [ - "1105ee2c-2297-4460-bbff-d332ec54c69d" + "849326e5-354b-462d-8922-d70685ea163d" ], "x-ms-correlation-request-id": [ - "1105ee2c-2297-4460-bbff-d332ec54c69d" + "849326e5-354b-462d-8922-d70685ea163d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084701Z:1105ee2c-2297-4460-bbff-d332ec54c69d" + "NORTHEUROPE:20151022T121929Z:849326e5-354b-462d-8922-d70685ea163d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2713,14 +2713,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:01 GMT" + "Thu, 22 Oct 2015 12:19:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2728,10 +2728,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:18.222091Z\",\r\n \"duration\": \"PT41.8692129S\",\r\n \"trackingId\": \"ff800198-104d-448e-9df6-9a33bc96ca8f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2098" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2743,16 +2743,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" + "14865" ], "x-ms-request-id": [ - "56850e51-841e-444c-98b4-adcd2cf11270" + "d35825db-5156-455a-9b2a-008dc6e47488" ], "x-ms-correlation-request-id": [ - "56850e51-841e-444c-98b4-adcd2cf11270" + "d35825db-5156-455a-9b2a-008dc6e47488" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084705Z:56850e51-841e-444c-98b4-adcd2cf11270" + "NORTHEUROPE:20151022T121933Z:d35825db-5156-455a-9b2a-008dc6e47488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2761,14 +2761,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:04 GMT" + "Thu, 22 Oct 2015 12:19:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,10 +2776,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:35.6936126Z\",\r\n \"duration\": \"PT59.3407345S\",\r\n \"trackingId\": \"aba3433c-3e26-4b3c-96bd-f4f569cbf8fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2791,16 +2791,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "14863" ], "x-ms-request-id": [ - "d1267bb6-de31-40a9-9884-b2e5b7e1b363" + "efa31a73-92e4-41e0-96a3-20756a107fb9" ], "x-ms-correlation-request-id": [ - "d1267bb6-de31-40a9-9884-b2e5b7e1b363" + "efa31a73-92e4-41e0-96a3-20756a107fb9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084709Z:d1267bb6-de31-40a9-9884-b2e5b7e1b363" + "NORTHEUROPE:20151022T121936Z:efa31a73-92e4-41e0-96a3-20756a107fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2809,14 +2809,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:08 GMT" + "Thu, 22 Oct 2015 12:19:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,10 +2824,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:35.6936126Z\",\r\n \"duration\": \"PT59.3407345S\",\r\n \"trackingId\": \"aba3433c-3e26-4b3c-96bd-f4f569cbf8fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2839,16 +2839,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14861" ], "x-ms-request-id": [ - "1230e6a0-96cf-4659-a5cb-9c879d6c6467" + "7a2037d8-2397-4417-86b6-841e4bbf8e71" ], "x-ms-correlation-request-id": [ - "1230e6a0-96cf-4659-a5cb-9c879d6c6467" + "7a2037d8-2397-4417-86b6-841e4bbf8e71" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084712Z:1230e6a0-96cf-4659-a5cb-9c879d6c6467" + "NORTHEUROPE:20151022T121940Z:7a2037d8-2397-4417-86b6-841e4bbf8e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2857,14 +2857,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:12 GMT" + "Thu, 22 Oct 2015 12:19:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,10 +2872,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:35.6936126Z\",\r\n \"duration\": \"PT59.3407345S\",\r\n \"trackingId\": \"aba3433c-3e26-4b3c-96bd-f4f569cbf8fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2887,16 +2887,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14859" ], "x-ms-request-id": [ - "fc7d2c31-7f54-4b95-ad48-32297e7e2a75" + "f467c40a-d919-4c54-a576-bd71be744846" ], "x-ms-correlation-request-id": [ - "fc7d2c31-7f54-4b95-ad48-32297e7e2a75" + "f467c40a-d919-4c54-a576-bd71be744846" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084716Z:fc7d2c31-7f54-4b95-ad48-32297e7e2a75" + "NORTHEUROPE:20151022T121944Z:f467c40a-d919-4c54-a576-bd71be744846" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2905,14 +2905,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:15 GMT" + "Thu, 22 Oct 2015 12:19:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2920,10 +2920,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:35.6936126Z\",\r\n \"duration\": \"PT59.3407345S\",\r\n \"trackingId\": \"aba3433c-3e26-4b3c-96bd-f4f569cbf8fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,16 +2935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14693" + "14857" ], "x-ms-request-id": [ - "a53dd39a-5f77-4b43-abc0-c9fa32c2ad6f" + "05747a70-a9a7-4408-90e8-ed4a0e76b4f0" ], "x-ms-correlation-request-id": [ - "a53dd39a-5f77-4b43-abc0-c9fa32c2ad6f" + "05747a70-a9a7-4408-90e8-ed4a0e76b4f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084720Z:a53dd39a-5f77-4b43-abc0-c9fa32c2ad6f" + "NORTHEUROPE:20151022T121948Z:05747a70-a9a7-4408-90e8-ed4a0e76b4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,14 +2953,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:19 GMT" + "Thu, 22 Oct 2015 12:19:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2968,10 +2968,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:51.9358073Z\",\r\n \"duration\": \"PT1M15.5829292S\",\r\n \"trackingId\": \"83d44942-cb2b-4039-9e82-96b8551fc0c6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,16 +2983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14691" + "14855" ], "x-ms-request-id": [ - "68ab401b-301c-428d-95ee-f5c189dff93c" + "d9b1dc91-c280-4862-bf22-00681e60ca48" ], "x-ms-correlation-request-id": [ - "68ab401b-301c-428d-95ee-f5c189dff93c" + "d9b1dc91-c280-4862-bf22-00681e60ca48" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084724Z:68ab401b-301c-428d-95ee-f5c189dff93c" + "NORTHEUROPE:20151022T121952Z:d9b1dc91-c280-4862-bf22-00681e60ca48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,14 +3001,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:23 GMT" + "Thu, 22 Oct 2015 12:19:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3016,10 +3016,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:51.9358073Z\",\r\n \"duration\": \"PT1M15.5829292S\",\r\n \"trackingId\": \"83d44942-cb2b-4039-9e82-96b8551fc0c6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3031,16 +3031,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" + "14853" ], "x-ms-request-id": [ - "4c415dbe-c401-40df-9152-61e23bebe34e" + "aa973df1-a45b-4a06-8ac0-b1c18c1f40f8" ], "x-ms-correlation-request-id": [ - "4c415dbe-c401-40df-9152-61e23bebe34e" + "aa973df1-a45b-4a06-8ac0-b1c18c1f40f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084727Z:4c415dbe-c401-40df-9152-61e23bebe34e" + "NORTHEUROPE:20151022T121956Z:aa973df1-a45b-4a06-8ac0-b1c18c1f40f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,14 +3049,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:27 GMT" + "Thu, 22 Oct 2015 12:19:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3064,10 +3064,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:51.9358073Z\",\r\n \"duration\": \"PT1M15.5829292S\",\r\n \"trackingId\": \"83d44942-cb2b-4039-9e82-96b8551fc0c6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3079,16 +3079,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14851" ], "x-ms-request-id": [ - "7d40f9a3-b290-4905-8ab1-0faa106a6365" + "1b2d3fb9-fe1a-4298-bca3-378b1a2e989c" ], "x-ms-correlation-request-id": [ - "7d40f9a3-b290-4905-8ab1-0faa106a6365" + "1b2d3fb9-fe1a-4298-bca3-378b1a2e989c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084731Z:7d40f9a3-b290-4905-8ab1-0faa106a6365" + "NORTHEUROPE:20151022T122000Z:1b2d3fb9-fe1a-4298-bca3-378b1a2e989c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,14 +3097,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:31 GMT" + "Thu, 22 Oct 2015 12:20:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3112,10 +3112,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:51.9358073Z\",\r\n \"duration\": \"PT1M15.5829292S\",\r\n \"trackingId\": \"83d44942-cb2b-4039-9e82-96b8551fc0c6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3127,16 +3127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" + "14851" ], "x-ms-request-id": [ - "ef26813a-265f-4275-a44e-c89568728705" + "70c2a676-a88f-4393-abbf-5fe8101e32cf" ], "x-ms-correlation-request-id": [ - "ef26813a-265f-4275-a44e-c89568728705" + "70c2a676-a88f-4393-abbf-5fe8101e32cf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084735Z:ef26813a-265f-4275-a44e-c89568728705" + "NORTHEUROPE:20151022T122004Z:70c2a676-a88f-4393-abbf-5fe8101e32cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3145,14 +3145,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:35 GMT" + "Thu, 22 Oct 2015 12:20:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3160,10 +3160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:19:51.9358073Z\",\r\n \"duration\": \"PT1M15.5829292S\",\r\n \"trackingId\": \"83d44942-cb2b-4039-9e82-96b8551fc0c6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3175,16 +3175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" + "14849" ], "x-ms-request-id": [ - "ae8efe2c-776c-4760-bccd-5f3f25036d7e" + "648c2687-fd45-42d1-a34a-2e9fe0ecd292" ], "x-ms-correlation-request-id": [ - "ae8efe2c-776c-4760-bccd-5f3f25036d7e" + "648c2687-fd45-42d1-a34a-2e9fe0ecd292" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084740Z:ae8efe2c-776c-4760-bccd-5f3f25036d7e" + "NORTHEUROPE:20151022T122008Z:648c2687-fd45-42d1-a34a-2e9fe0ecd292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3193,14 +3193,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:39 GMT" + "Thu, 22 Oct 2015 12:20:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3208,10 +3208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:11.5972488Z\",\r\n \"duration\": \"PT1M35.2443707S\",\r\n \"trackingId\": \"e9761f04-95b7-4217-bb72-ead429081769\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3223,16 +3223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" + "14847" ], "x-ms-request-id": [ - "e94c76cf-6aa4-46d8-8a0b-37b8cf0d94d2" + "31909976-8428-48a3-a637-2b0e33a9c608" ], "x-ms-correlation-request-id": [ - "e94c76cf-6aa4-46d8-8a0b-37b8cf0d94d2" + "31909976-8428-48a3-a637-2b0e33a9c608" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084744Z:e94c76cf-6aa4-46d8-8a0b-37b8cf0d94d2" + "NORTHEUROPE:20151022T122012Z:31909976-8428-48a3-a637-2b0e33a9c608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,14 +3241,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:44 GMT" + "Thu, 22 Oct 2015 12:20:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3256,10 +3256,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:11.5972488Z\",\r\n \"duration\": \"PT1M35.2443707S\",\r\n \"trackingId\": \"e9761f04-95b7-4217-bb72-ead429081769\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3271,16 +3271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "14845" ], "x-ms-request-id": [ - "0298ca24-b5f8-4860-926f-707448776b6f" + "f39d1fa8-84da-4795-a083-2013ae8ca1ab" ], "x-ms-correlation-request-id": [ - "0298ca24-b5f8-4860-926f-707448776b6f" + "f39d1fa8-84da-4795-a083-2013ae8ca1ab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084748Z:0298ca24-b5f8-4860-926f-707448776b6f" + "NORTHEUROPE:20151022T122016Z:f39d1fa8-84da-4795-a083-2013ae8ca1ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3289,14 +3289,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:48 GMT" + "Thu, 22 Oct 2015 12:20:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3304,10 +3304,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:19.3404622Z\",\r\n \"duration\": \"PT1M42.9875841S\",\r\n \"trackingId\": \"0d5011c3-d0de-4993-9932-5e3aaa4dee8a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3319,16 +3319,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14674" + "14843" ], "x-ms-request-id": [ - "f2777bec-a885-4e7d-a2df-559fd0023b1e" + "83e47b6d-5ce6-4ea0-9226-7ec85ec26571" ], "x-ms-correlation-request-id": [ - "f2777bec-a885-4e7d-a2df-559fd0023b1e" + "83e47b6d-5ce6-4ea0-9226-7ec85ec26571" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084752Z:f2777bec-a885-4e7d-a2df-559fd0023b1e" + "NORTHEUROPE:20151022T122020Z:83e47b6d-5ce6-4ea0-9226-7ec85ec26571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3337,14 +3337,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:52 GMT" + "Thu, 22 Oct 2015 12:20:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3352,10 +3352,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:19.3404622Z\",\r\n \"duration\": \"PT1M42.9875841S\",\r\n \"trackingId\": \"0d5011c3-d0de-4993-9932-5e3aaa4dee8a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3367,16 +3367,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "14841" ], "x-ms-request-id": [ - "1db9110f-9fb5-44c5-b352-6df9f0859cc6" + "d975c625-bf42-4543-a462-acc8c9c9f60d" ], "x-ms-correlation-request-id": [ - "1db9110f-9fb5-44c5-b352-6df9f0859cc6" + "d975c625-bf42-4543-a462-acc8c9c9f60d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084756Z:1db9110f-9fb5-44c5-b352-6df9f0859cc6" + "NORTHEUROPE:20151022T122024Z:d975c625-bf42-4543-a462-acc8c9c9f60d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3385,14 +3385,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:56 GMT" + "Thu, 22 Oct 2015 12:20:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3400,10 +3400,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:26.7639426Z\",\r\n \"duration\": \"PT1M50.4110645S\",\r\n \"trackingId\": \"b8425db7-533d-4be4-b83d-0b678522b56c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3415,16 +3415,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "14839" ], "x-ms-request-id": [ - "6347815b-7413-4723-9272-0358a491edce" + "df4aeb51-faf7-4cbf-babf-d15438327822" ], "x-ms-correlation-request-id": [ - "6347815b-7413-4723-9272-0358a491edce" + "df4aeb51-faf7-4cbf-babf-d15438327822" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084800Z:6347815b-7413-4723-9272-0358a491edce" + "NORTHEUROPE:20151022T122028Z:df4aeb51-faf7-4cbf-babf-d15438327822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,14 +3433,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:47:59 GMT" + "Thu, 22 Oct 2015 12:20:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3448,10 +3448,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:20:26.7639426Z\",\r\n \"duration\": \"PT1M50.4110645S\",\r\n \"trackingId\": \"b8425db7-533d-4be4-b83d-0b678522b56c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3463,16 +3463,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14837" ], "x-ms-request-id": [ - "a0e4a33d-4335-4e16-a1de-867efbd3bf32" + "815a557c-a417-4e9f-8a25-73da47d1fcbd" ], "x-ms-correlation-request-id": [ - "a0e4a33d-4335-4e16-a1de-867efbd3bf32" + "815a557c-a417-4e9f-8a25-73da47d1fcbd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084804Z:a0e4a33d-4335-4e16-a1de-867efbd3bf32" + "NORTHEUROPE:20151022T122031Z:815a557c-a417-4e9f-8a25-73da47d1fcbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,14 +3481,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:03 GMT" + "Thu, 22 Oct 2015 12:20:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3496,10 +3496,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:20:33.9553082Z\",\r\n \"duration\": \"PT1M57.6024301S\",\r\n \"trackingId\": \"13fbeaf9-0235-4c07-a88e-69b9e7f8e971\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3511,16 +3511,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "14835" ], "x-ms-request-id": [ - "e4d636ff-5adf-4711-bbaf-f6003fe7c1cd" + "0d64b7c8-e8f4-44ea-b7ab-a6217524e1b7" ], "x-ms-correlation-request-id": [ - "e4d636ff-5adf-4711-bbaf-f6003fe7c1cd" + "0d64b7c8-e8f4-44ea-b7ab-a6217524e1b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084808Z:e4d636ff-5adf-4711-bbaf-f6003fe7c1cd" + "NORTHEUROPE:20151022T122035Z:0d64b7c8-e8f4-44ea-b7ab-a6217524e1b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3529,14 +3529,14 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:08 GMT" + "Thu, 22 Oct 2015 12:20:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3544,10 +3544,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:20:33.9553082Z\",\r\n \"duration\": \"PT1M57.6024301S\",\r\n \"trackingId\": \"13fbeaf9-0235-4c07-a88e-69b9e7f8e971\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/8BC33F8F799DE426\",\r\n \"operationId\": \"8BC33F8F799DE426\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:41.3371734Z\",\r\n \"duration\": \"PT4.7548425S\",\r\n \"trackingId\": \"01e9acd9-51d8-4cd0-b5b6-a4b1577c8473\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:18:36.2727493Z\",\r\n \"duration\": \"PT2M21.2117165S\",\r\n \"trackingId\": \"74978e8c-9e07-4ed6-94be-38c91ff1874a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2302" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3559,16 +3559,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" + "14833" ], "x-ms-request-id": [ - "f65920ff-790b-4955-ae16-44362ce6eca8" + "062c1ac1-a0db-4263-9c58-e640d74f413b" ], "x-ms-correlation-request-id": [ - "f65920ff-790b-4955-ae16-44362ce6eca8" + "062c1ac1-a0db-4263-9c58-e640d74f413b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084812Z:f65920ff-790b-4955-ae16-44362ce6eca8" + "NORTHEUROPE:20151022T122039Z:062c1ac1-a0db-4263-9c58-e640d74f413b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3577,7 +3577,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:11 GMT" + "Thu, 22 Oct 2015 12:20:39 GMT" ] }, "StatusCode": 200 @@ -3592,7 +3592,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3607,16 +3607,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "14968" ], "x-ms-request-id": [ - "c288395b-2e53-40e5-9910-2b28079379bf" + "095e6c13-22b9-46cf-9832-556d2b4689d1" ], "x-ms-correlation-request-id": [ - "c288395b-2e53-40e5-9910-2b28079379bf" + "095e6c13-22b9-46cf-9832-556d2b4689d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084816Z:c288395b-2e53-40e5-9910-2b28079379bf" + "NORTHEUROPE:20151022T121617Z:095e6c13-22b9-46cf-9832-556d2b4689d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3625,7 +3625,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:15 GMT" + "Thu, 22 Oct 2015 12:16:17 GMT" ] }, "StatusCode": 200 @@ -3640,7 +3640,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3655,16 +3655,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" + "14966" ], "x-ms-request-id": [ - "c5fb7d3f-fbef-4a81-a836-925db6740e5d" + "cb2a8559-0197-41b3-bd13-b4cb6966ee96" ], "x-ms-correlation-request-id": [ - "c5fb7d3f-fbef-4a81-a836-925db6740e5d" + "cb2a8559-0197-41b3-bd13-b4cb6966ee96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084820Z:c5fb7d3f-fbef-4a81-a836-925db6740e5d" + "NORTHEUROPE:20151022T121621Z:cb2a8559-0197-41b3-bd13-b4cb6966ee96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3673,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:19 GMT" + "Thu, 22 Oct 2015 12:16:20 GMT" ] }, "StatusCode": 200 @@ -3688,7 +3688,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3703,16 +3703,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "14963" ], "x-ms-request-id": [ - "7425da74-cc26-4836-9156-9f105dd03eda" + "9b796659-7a25-404b-822a-932ab8a633a3" ], "x-ms-correlation-request-id": [ - "7425da74-cc26-4836-9156-9f105dd03eda" + "9b796659-7a25-404b-822a-932ab8a633a3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084824Z:7425da74-cc26-4836-9156-9f105dd03eda" + "NORTHEUROPE:20151022T121624Z:9b796659-7a25-404b-822a-932ab8a633a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3721,7 +3721,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:23 GMT" + "Thu, 22 Oct 2015 12:16:24 GMT" ] }, "StatusCode": 200 @@ -3736,7 +3736,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3751,16 +3751,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14653" + "14961" ], "x-ms-request-id": [ - "cba70f74-6e07-401a-bb8b-3576111d3941" + "053a92de-cffb-46e0-a102-8810c3b1c6c7" ], "x-ms-correlation-request-id": [ - "cba70f74-6e07-401a-bb8b-3576111d3941" + "053a92de-cffb-46e0-a102-8810c3b1c6c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084829Z:cba70f74-6e07-401a-bb8b-3576111d3941" + "NORTHEUROPE:20151022T121628Z:053a92de-cffb-46e0-a102-8810c3b1c6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,7 +3769,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:28 GMT" + "Thu, 22 Oct 2015 12:16:27 GMT" ] }, "StatusCode": 200 @@ -3784,7 +3784,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3799,16 +3799,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14651" + "14959" ], "x-ms-request-id": [ - "25867ea7-20b1-4a35-821d-6761f55fc6ac" + "02dbf3c7-82ff-4bc2-afd0-a381ac3f7237" ], "x-ms-correlation-request-id": [ - "25867ea7-20b1-4a35-821d-6761f55fc6ac" + "02dbf3c7-82ff-4bc2-afd0-a381ac3f7237" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084833Z:25867ea7-20b1-4a35-821d-6761f55fc6ac" + "NORTHEUROPE:20151022T121632Z:02dbf3c7-82ff-4bc2-afd0-a381ac3f7237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3817,7 +3817,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:32 GMT" + "Thu, 22 Oct 2015 12:16:31 GMT" ] }, "StatusCode": 200 @@ -3832,7 +3832,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3847,16 +3847,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" + "14957" ], "x-ms-request-id": [ - "5a313127-6f4c-4480-82aa-e2df7b6adf52" + "3a25821e-e654-41a3-ae86-2185ca28ac1c" ], "x-ms-correlation-request-id": [ - "5a313127-6f4c-4480-82aa-e2df7b6adf52" + "3a25821e-e654-41a3-ae86-2185ca28ac1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084837Z:5a313127-6f4c-4480-82aa-e2df7b6adf52" + "NORTHEUROPE:20151022T121635Z:3a25821e-e654-41a3-ae86-2185ca28ac1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,7 +3865,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:36 GMT" + "Thu, 22 Oct 2015 12:16:35 GMT" ] }, "StatusCode": 200 @@ -3880,7 +3880,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3895,16 +3895,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" + "14955" ], "x-ms-request-id": [ - "4488fec8-2664-4983-a0fc-102fc01a7ba1" + "25773901-c6bc-4742-be74-02409008ad23" ], "x-ms-correlation-request-id": [ - "4488fec8-2664-4983-a0fc-102fc01a7ba1" + "25773901-c6bc-4742-be74-02409008ad23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084841Z:4488fec8-2664-4983-a0fc-102fc01a7ba1" + "NORTHEUROPE:20151022T121639Z:25773901-c6bc-4742-be74-02409008ad23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,7 +3913,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:40 GMT" + "Thu, 22 Oct 2015 12:16:38 GMT" ] }, "StatusCode": 200 @@ -3928,7 +3928,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-14T08:46:18.4019645Z\",\r\n \"duration\": \"PT5.2182225S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3943,16 +3943,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "14953" ], "x-ms-request-id": [ - "cb69ee9e-230d-41e1-bf8d-270caf8edd0d" + "82eaa9ff-7ba6-4aaa-8b5c-f3b5740ee8a8" ], "x-ms-correlation-request-id": [ - "cb69ee9e-230d-41e1-bf8d-270caf8edd0d" + "82eaa9ff-7ba6-4aaa-8b5c-f3b5740ee8a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084845Z:cb69ee9e-230d-41e1-bf8d-270caf8edd0d" + "NORTHEUROPE:20151022T121643Z:82eaa9ff-7ba6-4aaa-8b5c-f3b5740ee8a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3961,7 +3961,7 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:44 GMT" + "Thu, 22 Oct 2015 12:16:43 GMT" ] }, "StatusCode": 200 @@ -3976,10 +3976,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-14T08:48:45.9463111Z\",\r\n \"duration\": \"PT2M32.7625691S\",\r\n \"correlationId\": \"d0144dbf-51d4-412b-8f39-839d110a520b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2568" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3991,16 +3991,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14642" + "14951" ], "x-ms-request-id": [ - "03862c09-de10-45fe-b8cd-187972d632d8" + "ff1bfe0a-29b1-497f-9b3a-23771dbb6712" ], "x-ms-correlation-request-id": [ - "03862c09-de10-45fe-b8cd-187972d632d8" + "ff1bfe0a-29b1-497f-9b3a-23771dbb6712" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084849Z:03862c09-de10-45fe-b8cd-187972d632d8" + "NORTHEUROPE:20151022T121646Z:ff1bfe0a-29b1-497f-9b3a-23771dbb6712" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4009,166 +4009,3154 @@ "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:49 GMT" + "Thu, 22 Oct 2015 12:16:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "b20bdfc8-b20e-496a-931c-2c82fd4a6bae" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "452" + "2302" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "e5222235-4c36-4492-8d71-50013c370eb7" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "14949" + ], + "x-ms-request-id": [ + "799f8687-53b4-4248-ad2a-1d02a721ea69" ], "x-ms-correlation-request-id": [ - "9a3335ab-250a-4357-b723-efedead6cb8b" + "799f8687-53b4-4248-ad2a-1d02a721ea69" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084859Z:9a3335ab-250a-4357-b723-efedead6cb8b" + "NORTHEUROPE:20151022T121650Z:799f8687-53b4-4248-ad2a-1d02a721ea69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:48:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:16:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "4df8fcbc-9991-486e-808a-a1c2f7072fb5" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "2302" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "64a9cd16-29e9-4d0b-b5cf-d9c8144aaa2b" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json; charset=utf-8" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" + "14947" + ], + "x-ms-request-id": [ + "75489fec-946e-4cec-9037-881a5b9f55df" ], "x-ms-correlation-request-id": [ - "ed8a8441-aadf-4f77-84bb-ce572730ff28" + "75489fec-946e-4cec-9037-881a5b9f55df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084907Z:ed8a8441-aadf-4f77-84bb-ce572730ff28" + "NORTHEUROPE:20151022T121654Z:75489fec-946e-4cec-9037-881a5b9f55df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:07 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Thu, 22 Oct 2015 12:16:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "9742bf34-5f48-485c-b937-7de5d55368bb" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "2302" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" ], "x-ms-request-id": [ - "987c1df9-1f5b-455f-b74c-a4e1031ce46a" + "1452bfd0-323d-430b-9a52-059623047b04" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "1452bfd0-323d-430b-9a52-059623047b04" ], - "DataServiceVersion": [ - "3.0;" + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121657Z:1452bfd0-323d-430b-9a52-059623047b04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:16:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "062a5997-0a1b-4564-86ee-b73f36f70147" + ], + "x-ms-correlation-request-id": [ + "062a5997-0a1b-4564-86ee-b73f36f70147" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121701Z:062a5997-0a1b-4564-86ee-b73f36f70147" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "0c993412-3c79-4057-a09e-af8121c04727" + ], + "x-ms-correlation-request-id": [ + "0c993412-3c79-4057-a09e-af8121c04727" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121705Z:0c993412-3c79-4057-a09e-af8121c04727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "d7bca4a2-6bc9-4ceb-9d38-abf2c0ee2c62" + ], + "x-ms-correlation-request-id": [ + "d7bca4a2-6bc9-4ceb-9d38-abf2c0ee2c62" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121708Z:d7bca4a2-6bc9-4ceb-9d38-abf2c0ee2c62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "25b8b640-2adb-4c6c-bada-ab6888a79782" + ], + "x-ms-correlation-request-id": [ + "25b8b640-2adb-4c6c-bada-ab6888a79782" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121712Z:25b8b640-2adb-4c6c-bada-ab6888a79782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "8ef01193-ff80-4770-b9f8-31ccb99f45ac" + ], + "x-ms-correlation-request-id": [ + "8ef01193-ff80-4770-b9f8-31ccb99f45ac" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121716Z:8ef01193-ff80-4770-b9f8-31ccb99f45ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "cf513eaa-b945-4fe9-9f2e-dd2527c2ad1b" + ], + "x-ms-correlation-request-id": [ + "cf513eaa-b945-4fe9-9f2e-dd2527c2ad1b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121719Z:cf513eaa-b945-4fe9-9f2e-dd2527c2ad1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "a81176c7-5007-491c-85a2-70a0b018de72" + ], + "x-ms-correlation-request-id": [ + "a81176c7-5007-491c-85a2-70a0b018de72" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121723Z:a81176c7-5007-491c-85a2-70a0b018de72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "acec3167-8142-437d-9c91-6d3a3acbe89d" + ], + "x-ms-correlation-request-id": [ + "acec3167-8142-437d-9c91-6d3a3acbe89d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121727Z:acec3167-8142-437d-9c91-6d3a3acbe89d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "d61ff345-ae43-4dd6-9ae6-bed34755d9e9" + ], + "x-ms-correlation-request-id": [ + "d61ff345-ae43-4dd6-9ae6-bed34755d9e9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121731Z:d61ff345-ae43-4dd6-9ae6-bed34755d9e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "fb0afafd-4f4e-438f-9e6d-6817852f81a2" + ], + "x-ms-correlation-request-id": [ + "fb0afafd-4f4e-438f-9e6d-6817852f81a2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121735Z:fb0afafd-4f4e-438f-9e6d-6817852f81a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "10cb9e65-30e7-404d-95ef-d26bb079a0c3" + ], + "x-ms-correlation-request-id": [ + "10cb9e65-30e7-404d-95ef-d26bb079a0c3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121739Z:10cb9e65-30e7-404d-95ef-d26bb079a0c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "9a3ed917-bae4-4548-ac4d-8247227bd37d" + ], + "x-ms-correlation-request-id": [ + "9a3ed917-bae4-4548-ac4d-8247227bd37d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121743Z:9a3ed917-bae4-4548-ac4d-8247227bd37d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "d2777397-b14b-4752-a8ef-96f676e0b3cf" + ], + "x-ms-correlation-request-id": [ + "d2777397-b14b-4752-a8ef-96f676e0b3cf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121747Z:d2777397-b14b-4752-a8ef-96f676e0b3cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "1d4f29a5-abc6-4773-876e-7a84beb53ddc" + ], + "x-ms-correlation-request-id": [ + "1d4f29a5-abc6-4773-876e-7a84beb53ddc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121751Z:1d4f29a5-abc6-4773-876e-7a84beb53ddc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "0fd1c4a7-dac2-467b-949a-5152e6a96bf7" + ], + "x-ms-correlation-request-id": [ + "0fd1c4a7-dac2-467b-949a-5152e6a96bf7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121755Z:0fd1c4a7-dac2-467b-949a-5152e6a96bf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "f3247077-1a46-4c35-93ff-fa43721b894b" + ], + "x-ms-correlation-request-id": [ + "f3247077-1a46-4c35-93ff-fa43721b894b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121759Z:f3247077-1a46-4c35-93ff-fa43721b894b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:17:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-request-id": [ + "c0df6b85-7b6f-4a4b-adc5-c08b2d537f3e" + ], + "x-ms-correlation-request-id": [ + "c0df6b85-7b6f-4a4b-adc5-c08b2d537f3e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121803Z:c0df6b85-7b6f-4a4b-adc5-c08b2d537f3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-request-id": [ + "ce3864cf-9544-4968-8775-a155cafc260c" + ], + "x-ms-correlation-request-id": [ + "ce3864cf-9544-4968-8775-a155cafc260c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121807Z:ce3864cf-9544-4968-8775-a155cafc260c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-request-id": [ + "afc87341-0d07-43c5-91de-463663ba0b28" + ], + "x-ms-correlation-request-id": [ + "afc87341-0d07-43c5-91de-463663ba0b28" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121811Z:afc87341-0d07-43c5-91de-463663ba0b28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-request-id": [ + "43e00095-190b-4346-a516-63f645463d76" + ], + "x-ms-correlation-request-id": [ + "43e00095-190b-4346-a516-63f645463d76" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121815Z:43e00095-190b-4346-a516-63f645463d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-request-id": [ + "07f96369-27bd-4ee8-adc6-2c0458c81c78" + ], + "x-ms-correlation-request-id": [ + "07f96369-27bd-4ee8-adc6-2c0458c81c78" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121819Z:07f96369-27bd-4ee8-adc6-2c0458c81c78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-request-id": [ + "4365421c-214a-4fd3-b638-6564e998d99e" + ], + "x-ms-correlation-request-id": [ + "4365421c-214a-4fd3-b638-6564e998d99e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121823Z:4365421c-214a-4fd3-b638-6564e998d99e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-request-id": [ + "df8b786f-a278-4cc1-b9a6-9eff7185d3bb" + ], + "x-ms-correlation-request-id": [ + "df8b786f-a278-4cc1-b9a6-9eff7185d3bb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121827Z:df8b786f-a278-4cc1-b9a6-9eff7185d3bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-request-id": [ + "cc02c753-041b-430c-9f80-bcff6dce6578" + ], + "x-ms-correlation-request-id": [ + "cc02c753-041b-430c-9f80-bcff6dce6578" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121831Z:cc02c753-041b-430c-9f80-bcff6dce6578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-request-id": [ + "675ddeb0-e740-4dd4-b4ac-9165ceff38b0" + ], + "x-ms-correlation-request-id": [ + "675ddeb0-e740-4dd4-b4ac-9165ceff38b0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121835Z:675ddeb0-e740-4dd4-b4ac-9165ceff38b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-request-id": [ + "e7f67522-bd10-4f4c-b6ca-fea70a07295f" + ], + "x-ms-correlation-request-id": [ + "e7f67522-bd10-4f4c-b6ca-fea70a07295f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121838Z:e7f67522-bd10-4f4c-b6ca-fea70a07295f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-request-id": [ + "03877077-bb4b-4e90-a24e-4cd7d7c50e08" + ], + "x-ms-correlation-request-id": [ + "03877077-bb4b-4e90-a24e-4cd7d7c50e08" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121842Z:03877077-bb4b-4e90-a24e-4cd7d7c50e08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-request-id": [ + "0926cd42-fe47-4ae6-87c1-5560724f11ec" + ], + "x-ms-correlation-request-id": [ + "0926cd42-fe47-4ae6-87c1-5560724f11ec" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121846Z:0926cd42-fe47-4ae6-87c1-5560724f11ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-request-id": [ + "b2f509e4-5249-45d5-b172-0e155c9ab986" + ], + "x-ms-correlation-request-id": [ + "b2f509e4-5249-45d5-b172-0e155c9ab986" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121850Z:b2f509e4-5249-45d5-b172-0e155c9ab986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-request-id": [ + "1c64bb5d-fadb-4408-8f06-133d76d5e4d8" + ], + "x-ms-correlation-request-id": [ + "1c64bb5d-fadb-4408-8f06-133d76d5e4d8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121854Z:1c64bb5d-fadb-4408-8f06-133d76d5e4d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-request-id": [ + "1b8f86f4-8de9-4344-9f7b-7fd4bd45520b" + ], + "x-ms-correlation-request-id": [ + "1b8f86f4-8de9-4344-9f7b-7fd4bd45520b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121858Z:1b8f86f4-8de9-4344-9f7b-7fd4bd45520b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:18:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-request-id": [ + "7a1c16a3-f1fc-4a48-90d5-80e716e08eef" + ], + "x-ms-correlation-request-id": [ + "7a1c16a3-f1fc-4a48-90d5-80e716e08eef" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121902Z:7a1c16a3-f1fc-4a48-90d5-80e716e08eef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-request-id": [ + "eac4144d-98db-429a-b7a4-ee93cb637b9f" + ], + "x-ms-correlation-request-id": [ + "eac4144d-98db-429a-b7a4-ee93cb637b9f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121906Z:eac4144d-98db-429a-b7a4-ee93cb637b9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-request-id": [ + "909b589e-4148-45df-9384-8c79f01e0986" + ], + "x-ms-correlation-request-id": [ + "909b589e-4148-45df-9384-8c79f01e0986" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121910Z:909b589e-4148-45df-9384-8c79f01e0986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-request-id": [ + "6fdcb324-19f3-4f61-9a92-7c9180c9f856" + ], + "x-ms-correlation-request-id": [ + "6fdcb324-19f3-4f61-9a92-7c9180c9f856" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121914Z:6fdcb324-19f3-4f61-9a92-7c9180c9f856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-request-id": [ + "be25a747-3025-405e-a582-7de902e552ef" + ], + "x-ms-correlation-request-id": [ + "be25a747-3025-405e-a582-7de902e552ef" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121917Z:be25a747-3025-405e-a582-7de902e552ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-request-id": [ + "57e7d54a-04d6-4c41-a3be-34ed18c75fc0" + ], + "x-ms-correlation-request-id": [ + "57e7d54a-04d6-4c41-a3be-34ed18c75fc0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121921Z:57e7d54a-04d6-4c41-a3be-34ed18c75fc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-request-id": [ + "95aa31eb-af61-49af-8217-5611b8a901cb" + ], + "x-ms-correlation-request-id": [ + "95aa31eb-af61-49af-8217-5611b8a901cb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121925Z:95aa31eb-af61-49af-8217-5611b8a901cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-request-id": [ + "ff71f0af-3475-4704-b594-044d7618570d" + ], + "x-ms-correlation-request-id": [ + "ff71f0af-3475-4704-b594-044d7618570d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121929Z:ff71f0af-3475-4704-b594-044d7618570d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-request-id": [ + "7e7b24a0-03f3-40b7-84dc-6e11c24b8b39" + ], + "x-ms-correlation-request-id": [ + "7e7b24a0-03f3-40b7-84dc-6e11c24b8b39" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121933Z:7e7b24a0-03f3-40b7-84dc-6e11c24b8b39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-request-id": [ + "19a0db25-7c6d-4619-a84b-59ca5405f7ed" + ], + "x-ms-correlation-request-id": [ + "19a0db25-7c6d-4619-a84b-59ca5405f7ed" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121937Z:19a0db25-7c6d-4619-a84b-59ca5405f7ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-request-id": [ + "e3fb4130-f0f2-4d83-8181-0ef0a9099ea5" + ], + "x-ms-correlation-request-id": [ + "e3fb4130-f0f2-4d83-8181-0ef0a9099ea5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121941Z:e3fb4130-f0f2-4d83-8181-0ef0a9099ea5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "x-ms-request-id": [ + "4ab409e8-db03-4261-aa5c-3a96aab810dd" + ], + "x-ms-correlation-request-id": [ + "4ab409e8-db03-4261-aa5c-3a96aab810dd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121945Z:4ab409e8-db03-4261-aa5c-3a96aab810dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-request-id": [ + "2de336e2-be4b-4f23-8684-5213ed02d4ab" + ], + "x-ms-correlation-request-id": [ + "2de336e2-be4b-4f23-8684-5213ed02d4ab" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121949Z:2de336e2-be4b-4f23-8684-5213ed02d4ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-request-id": [ + "5b055f53-a005-4fdb-86f9-85d40da8318c" + ], + "x-ms-correlation-request-id": [ + "5b055f53-a005-4fdb-86f9-85d40da8318c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121953Z:5b055f53-a005-4fdb-86f9-85d40da8318c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-request-id": [ + "becdf699-98b5-4637-b368-98b0d96f2cf9" + ], + "x-ms-correlation-request-id": [ + "becdf699-98b5-4637-b368-98b0d96f2cf9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T121957Z:becdf699-98b5-4637-b368-98b0d96f2cf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:19:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-request-id": [ + "fbb2a837-f243-4cb6-8008-df3ae9b396f7" + ], + "x-ms-correlation-request-id": [ + "fbb2a837-f243-4cb6-8008-df3ae9b396f7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122001Z:fbb2a837-f243-4cb6-8008-df3ae9b396f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-request-id": [ + "98dc0f73-e40f-44bc-8253-b667dc5c6c53" + ], + "x-ms-correlation-request-id": [ + "98dc0f73-e40f-44bc-8253-b667dc5c6c53" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122005Z:98dc0f73-e40f-44bc-8253-b667dc5c6c53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-request-id": [ + "dad0c25b-6539-4e9b-a2ae-d76a6f3ef995" + ], + "x-ms-correlation-request-id": [ + "dad0c25b-6539-4e9b-a2ae-d76a6f3ef995" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122009Z:dad0c25b-6539-4e9b-a2ae-d76a6f3ef995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-request-id": [ + "0c8d5f06-b3c8-4e12-b073-47ca6f41f749" + ], + "x-ms-correlation-request-id": [ + "0c8d5f06-b3c8-4e12-b073-47ca6f41f749" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122013Z:0c8d5f06-b3c8-4e12-b073-47ca6f41f749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-request-id": [ + "53144e83-5b9a-48d0-a92f-dff3455d1ac0" + ], + "x-ms-correlation-request-id": [ + "53144e83-5b9a-48d0-a92f-dff3455d1ac0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122016Z:53144e83-5b9a-48d0-a92f-dff3455d1ac0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "x-ms-request-id": [ + "70fe8e04-b54f-4121-8461-94c6046ff4a8" + ], + "x-ms-correlation-request-id": [ + "70fe8e04-b54f-4121-8461-94c6046ff4a8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122020Z:70fe8e04-b54f-4121-8461-94c6046ff4a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-request-id": [ + "d7400909-c2a3-4d69-8f34-686e9a648e6c" + ], + "x-ms-correlation-request-id": [ + "d7400909-c2a3-4d69-8f34-686e9a648e6c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122024Z:d7400909-c2a3-4d69-8f34-686e9a648e6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-request-id": [ + "2cab7319-8f89-4843-b73f-ad062029138a" + ], + "x-ms-correlation-request-id": [ + "2cab7319-8f89-4843-b73f-ad062029138a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122028Z:2cab7319-8f89-4843-b73f-ad062029138a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-request-id": [ + "7a8e5fae-f0e8-46dd-8281-4bdbef229928" + ], + "x-ms-correlation-request-id": [ + "7a8e5fae-f0e8-46dd-8281-4bdbef229928" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122032Z:7a8e5fae-f0e8-46dd-8281-4bdbef229928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-10-22T12:16:14.9277964Z\",\r\n \"duration\": \"PT4.1307782S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-request-id": [ + "e5d2f61f-71b6-42ca-9ec5-2dec6e2f2b1a" + ], + "x-ms-correlation-request-id": [ + "e5d2f61f-71b6-42ca-9ec5-2dec6e2f2b1a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122036Z:e5d2f61f-71b6-42ca-9ec5-2dec6e2f2b1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-10-22T12:20:37.6648805Z\",\r\n \"duration\": \"PT4M26.8678623S\",\r\n \"correlationId\": \"95083ef8-ba8a-4ff2-97d1-d93232c6ea2c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server60222/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-request-id": [ + "336117de-33e5-45b4-ad06-7cf5b22fe98f" + ], + "x-ms-correlation-request-id": [ + "336117de-33e5-45b4-ad06-7cf5b22fe98f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122040Z:336117de-33e5-45b4-ad06-7cf5b22fe98f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "922200c5-b8e7-4858-b4e1-f52b37a8aad7" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0a94b458-860b-4789-9b86-ed4cf028a42e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "e0f914b8-dcf6-4ffa-b4a9-b678b92689b8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122046Z:e0f914b8-dcf6-4ffa-b4a9-b678b92689b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "922200c5-b8e7-4858-b4e1-f52b37a8aad7" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "28de00bb-fabe-461d-924a-3c84ebbe4238" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "b3340acb-6d33-42e9-bbda-ff4df4b2e3c4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122051Z:b3340acb-6d33-42e9-bbda-ff4df4b2e3c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cfaa69ef-914b-4329-804f-f0b510cb166d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e186dc36-d8af-40e3-a411-48064a5ebb82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "1159a891-1e81-4c03-bffe-13daf4eb88ee" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122058Z:1159a891-1e81-4c03-bffe-13daf4eb88ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:58 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cfaa69ef-914b-4329-804f-f0b510cb166d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "1d747ccd-e079-45a7-b7fe-ce6570ac8ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-correlation-request-id": [ + "dedc821c-490d-4ae0-9918-673f5855c1c6" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122059Z:dedc821c-490d-4ae0-9918-673f5855c1c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:58 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5dec23b3-46d9-4e8c-870c-a832ee3a4b7a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "275c5c71-f78b-4d7e-a8c5-1224039a8aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "14820" ], "x-ms-correlation-request-id": [ - "a6413fbe-d6fc-4122-baf2-6bd3923b71cd" + "02eea8a3-ff86-4148-aa72-8f84757343bc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084923Z:a6413fbe-d6fc-4122-baf2-6bd3923b71cd" + "NORTHEUROPE:20151022T122112Z:02eea8a3-ff86-4148-aa72-8f84757343bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:23 GMT" + "Thu, 22 Oct 2015 12:21:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4177,40 +7165,193 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5dec23b3-46d9-4e8c-870c-a832ee3a4b7a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "525" + ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4c1617f2-16a4-4b6d-945e-b5c81bed699f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "c507195b-c2b4-41a6-bbfd-34e216b785ba" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122112Z:c507195b-c2b4-41a6-bbfd-34e216b785ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:21:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "66d29680-0c42-4033-9ffd-fc4a2c3b81a0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-dm-cmdlet-server60222.database.windows.net\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { "Content-Length": [ - "92" + "525" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "dda40ebe-7238-47b3-9d1c-729c9e7cc13a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "9a65915b-8933-4516-98ed-a162f4e23ae3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122124Z:9a65915b-8933-4516-98ed-a162f4e23ae3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:21:24 GMT" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b20bdfc8-b20e-496a-931c-2c82fd4a6bae" + "922200c5-b8e7-4858-b4e1-f52b37a8aad7" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"New\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "452" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2435788e-e56c-4735-8412-010328778af9" + "abe2eebf-71d3-4d1c-a26d-d5ac7bd906fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "023b0a18-d056-4a21-b66f-17df9256d2cb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122051Z:023b0a18-d056-4a21-b66f-17df9256d2cb" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:20:50 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cfaa69ef-914b-4329-804f-f0b510cb166d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ba867e26-afa7-4b45-9e56-b31a26cdf7e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "DataServiceVersion": [ "3.0;" @@ -4218,20 +7359,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" ], "x-ms-correlation-request-id": [ - "c026b5d3-5658-4078-b95e-3d16211f83ba" + "d394b8e1-e0ec-44a4-9f80-c23af8717a46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084901Z:c026b5d3-5658-4078-b95e-3d16211f83ba" + "NORTHEUROPE:20151022T122101Z:d394b8e1-e0ec-44a4-9f80-c23af8717a46" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:01 GMT" + "Thu, 22 Oct 2015 12:21:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4240,8 +7381,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4249,19 +7390,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "1c9b487a-0b70-48b0-bca5-b33feaac14f0" + "5dec23b3-46d9-4e8c-870c-a832ee3a4b7a" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "456" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9531d8ba-f251-4a9c-8022-161a42060831" + "6a4bf4c2-79eb-46f8-8102-5ba55141683e" ], "X-Content-Type-Options": [ "nosniff" @@ -4273,19 +7414,82 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" + "14818" + ], + "x-ms-correlation-request-id": [ + "1530a896-3ff2-4087-81a0-ce1ca1f686d3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20151022T122115Z:1530a896-3ff2-4087-81a0-ce1ca1f686d3" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 22 Oct 2015 12:21:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"exemptPrincipals\": \"\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "922200c5-b8e7-4858-b4e1-f52b37a8aad7" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "441" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "6e88c253-10a2-4c08-b47a-03bc72848684" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "253a9db0-a833-4fc2-9864-236ab3dc3798" + "d67d6027-499a-4308-9643-35c4db70c83a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084904Z:253a9db0-a833-4fc2-9864-236ab3dc3798" + "NORTHEUROPE:20151022T122054Z:d67d6027-499a-4308-9643-35c4db70c83a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:03 GMT" + "Thu, 22 Oct 2015 12:20:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4303,7 +7507,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4df8fcbc-9991-486e-808a-a1c2f7072fb5" + "5828541b-5a74-4b32-bab8-146eb568deac" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4315,7 +7519,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c7a5c7e4-b695-4660-a2ae-123df2eaa4d0" + "8c50a8d7-b905-4d35-974b-881f1ee3d3f6" ], "X-Content-Type-Options": [ "nosniff" @@ -4327,19 +7531,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14667" + "14828" ], "x-ms-correlation-request-id": [ - "930b5364-f666-484f-bcc7-ba236200a568" + "d6650910-d342-43e6-8d44-9d8873ce41e8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084905Z:930b5364-f666-484f-bcc7-ba236200a568" + "NORTHEUROPE:20151022T122056Z:d6650910-d342-43e6-8d44-9d8873ce41e8" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:05 GMT" + "Thu, 22 Oct 2015 12:20:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4357,19 +7561,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a552ef70-830a-415c-a4e3-a2e2146a9cd5" + "cfaa69ef-914b-4329-804f-f0b510cb166d" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "12" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8868d363-ab3d-43de-bff3-efff420a3aae" + "e3eb440a-3923-4949-a07c-9a6e0df2a540" ], "X-Content-Type-Options": [ "nosniff" @@ -4381,19 +7585,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "14827" ], "x-ms-correlation-request-id": [ - "207c808e-dd4b-455d-bffc-f9533b579df2" + "05b9f327-fce4-485a-8eec-d9170228a38c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084914Z:207c808e-dd4b-455d-bffc-f9533b579df2" + "NORTHEUROPE:20151022T122058Z:05b9f327-fce4-485a-8eec-d9170228a38c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:13 GMT" + "Thu, 22 Oct 2015 12:20:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4411,19 +7615,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "613aa4ac-69da-4749-8b25-251fd81d02e3" + "6804e36c-8ef5-4f68-ae3c-5e1bcc010b52" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e9f0142e-329e-4222-a78f-149abceafce8" + "d14707a8-6544-4e2a-afc7-63317c5d4480" ], "X-Content-Type-Options": [ "nosniff" @@ -4435,19 +7639,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" + "14823" ], "x-ms-correlation-request-id": [ - "35ab6f41-bf36-4985-92a7-d5e839bed00f" + "906c01e8-35fc-41a9-86ed-380d92b28fde" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084917Z:35ab6f41-bf36-4985-92a7-d5e839bed00f" + "NORTHEUROPE:20151022T122107Z:906c01e8-35fc-41a9-86ed-380d92b28fde" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:16 GMT" + "Thu, 22 Oct 2015 12:21:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4465,19 +7669,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9742bf34-5f48-485c-b937-7de5d55368bb" + "c8f6b796-7d75-46e3-b88d-33abf4adb305" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b913e2d6-bf07-46af-a26a-dd3e10e048bc" + "13e0c984-14ff-4504-96ee-b55936ab1ad5" ], "X-Content-Type-Options": [ "nosniff" @@ -4489,19 +7693,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14662" + "14822" ], "x-ms-correlation-request-id": [ - "6b9480c2-4089-4905-a128-395c2b1cbfa6" + "ff200dc9-9d6a-4730-90dd-edba12388cf3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084920Z:6b9480c2-4089-4905-a128-395c2b1cbfa6" + "NORTHEUROPE:20151022T122109Z:ff200dc9-9d6a-4730-90dd-edba12388cf3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:19 GMT" + "Thu, 22 Oct 2015 12:21:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4519,19 +7723,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4fdb0450-d683-48ab-8367-4dbfac3b70bf" + "5dec23b3-46d9-4e8c-870c-a832ee3a4b7a" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f57884fd-358b-4b1c-9dea-6cedca8e663d" + "9a566445-3d62-496f-85a6-415a46a5de28" ], "X-Content-Type-Options": [ "nosniff" @@ -4543,19 +7747,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" + "14821" ], "x-ms-correlation-request-id": [ - "30d249f9-4f0b-45a7-800b-20661caf3f46" + "3d49161f-03df-4a34-a6a6-fba0c343c6c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084929Z:30d249f9-4f0b-45a7-800b-20661caf3f46" + "NORTHEUROPE:20151022T122112Z:3d49161f-03df-4a34-a6a6-fba0c343c6c9" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:29 GMT" + "Thu, 22 Oct 2015 12:21:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4573,19 +7777,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "84fcc9e0-3fc9-4dd6-a9ce-c6928fa08481" + "6b504499-4325-4430-be0b-075478ed46f9" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a45a1bc6-a3a7-4374-8c9f-bc69c8e27f77" + "0e0032a8-9b12-4fe8-aa84-25f889efb399" ], "X-Content-Type-Options": [ "nosniff" @@ -4597,19 +7801,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "14817" ], "x-ms-correlation-request-id": [ - "d06ef040-11bd-4c57-a680-a29079ae15c8" + "33b90a48-0432-4530-932e-46487d8a970f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084931Z:d06ef040-11bd-4c57-a680-a29079ae15c8" + "NORTHEUROPE:20151022T122120Z:33b90a48-0432-4530-932e-46487d8a970f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:31 GMT" + "Thu, 22 Oct 2015 12:21:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4627,19 +7831,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "957ccd1f-30b4-4ce4-8313-43e5ef97140b" + "1604068b-e9d3-425f-9db6-2b07280739b0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "602" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ea2aac5a-6d9e-45bd-955c-923ff067dd29" + "df241569-01c9-4626-9ec2-f40a6129da99" ], "X-Content-Type-Options": [ "nosniff" @@ -4651,19 +7855,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14655" + "14816" ], "x-ms-correlation-request-id": [ - "a3f7c222-100f-484c-a94a-de1e69c64687" + "a7c2f951-4467-460b-b3ee-09fa40eb6fc4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084936Z:a3f7c222-100f-484c-a94a-de1e69c64687" + "NORTHEUROPE:20151022T122122Z:a7c2f951-4467-460b-b3ee-09fa40eb6fc4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:36 GMT" + "Thu, 22 Oct 2015 12:21:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4681,19 +7885,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d378ad56-adcf-4011-80cd-6d777ebc5327" + "66d29680-0c42-4033-9ffd-fc4a2c3b81a0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": null,\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "615" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "22abe50a-7afe-47af-87bd-4f4e911d605e" + "699b9f35-e823-4b61-b852-c0693910c173" ], "X-Content-Type-Options": [ "nosniff" @@ -4705,19 +7909,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" + "14815" ], "x-ms-correlation-request-id": [ - "12d6fda8-e45f-4a75-ba66-ff49b6ffd40e" + "75c4d2dd-01c3-480d-8746-12b792cff482" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084944Z:12d6fda8-e45f-4a75-ba66-ff49b6ffd40e" + "NORTHEUROPE:20151022T122124Z:75c4d2dd-01c3-480d-8746-12b792cff482" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:43 GMT" + "Thu, 22 Oct 2015 12:21:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4735,7 +7939,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b211cf33-cb45-482e-a6c0-5b9e6299def7" + "8331d52d-aed6-4393-8b7b-b0bbfef454ba" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4747,7 +7951,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "891319c9-fc7c-4bd8-9366-424be2b774ab" + "be360a46-9ec1-414c-a4d5-62c1c007bf32" ], "X-Content-Type-Options": [ "nosniff" @@ -4759,19 +7963,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14653" + "14813" ], "x-ms-correlation-request-id": [ - "caa2d7bb-4092-461f-9a98-ba9d744a1456" + "08343917-8806-473e-937e-c39281398be1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084946Z:caa2d7bb-4092-461f-9a98-ba9d744a1456" + "NORTHEUROPE:20151022T122132Z:08343917-8806-473e-937e-c39281398be1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:45 GMT" + "Thu, 22 Oct 2015 12:21:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4780,34 +7984,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "273" + "286" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4df8fcbc-9991-486e-808a-a1c2f7072fb5" + "cfaa69ef-914b-4329-804f-f0b510cb166d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "591" + "630" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ca8c588d-f676-49f4-8362-e3c6a36d6e32" + "d5fd3dae-419b-4648-8cc7-02572913ddfd" ], "X-Content-Type-Options": [ "nosniff" @@ -4822,19 +8026,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "0a41d2e2-a973-4cb4-8de5-db0de951c84e" + "9f0594d5-ac18-49b4-bb6b-a733a0e36385" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084910Z:0a41d2e2-a973-4cb4-8de5-db0de951c84e" + "NORTHEUROPE:20151022T122104Z:9f0594d5-ac18-49b4-bb6b-a733a0e36385" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:09 GMT" + "Thu, 22 Oct 2015 12:21:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4843,34 +8047,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "273" + "286" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9742bf34-5f48-485c-b937-7de5d55368bb" + "5dec23b3-46d9-4e8c-870c-a832ee3a4b7a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Enabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "591" + "630" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b052627b-d5d4-4f57-83ce-3d376f9e1963" + "879b8800-dd34-4466-b0cb-db6b4cd75e2b" ], "X-Content-Type-Options": [ "nosniff" @@ -4885,19 +8089,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "0e98853f-b88f-4ae5-b21e-60e37e099687" + "702a4c6f-57e4-4685-8f3e-52cf404c3d4e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084926Z:0e98853f-b88f-4ae5-b21e-60e37e099687" + "NORTHEUROPE:20151022T122118Z:702a4c6f-57e4-4685-8f3e-52cf404c3d4e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:26 GMT" + "Thu, 22 Oct 2015 12:21:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4906,34 +8110,34 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "274" + "287" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "957ccd1f-30b4-4ce4-8313-43e5ef97140b" + "66d29680-0c42-4033-9ffd-fc4a2c3b81a0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1\",\r\n \"name\": \"dbo_table1_column1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"id\": \"dbo_table1_column1\",\r\n \"ruleState\": \"Disabled\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "592" + "631" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9766a2e6-c928-465c-ba89-12406887d43b" + "ddf5cc12-f4bc-4539-995b-90bcbda7f6b3" ], "X-Content-Type-Options": [ "nosniff" @@ -4948,19 +8152,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "b9737585-c995-4d7c-bc58-8c125cc6a466" + "cc40a10d-77e3-4646-ad81-15cf46a7c80c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084939Z:b9737585-c995-4d7c-bc58-8c125cc6a466" + "NORTHEUROPE:20151022T122128Z:cc40a10d-77e3-4646-ad81-15cf46a7c80c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:38 GMT" + "Thu, 22 Oct 2015 12:21:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4969,8 +8173,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule4?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/dbo_table1_column1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9kYm9fdGFibGUxX2NvbHVtbjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4978,7 +8182,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "957ccd1f-30b4-4ce4-8313-43e5ef97140b" + "66d29680-0c42-4033-9ffd-fc4a2c3b81a0" ] }, "ResponseBody": "", @@ -4990,7 +8194,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "3575ee60-44ce-4860-957b-60d10a2793a1" + "894c44d3-e7dd-4f47-b244-0a9018a96bd4" ], "X-Content-Type-Options": [ "nosniff" @@ -5002,19 +8206,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "7fffb188-feda-4835-a7bb-70529f188938" + "7b55aef4-86b1-4965-a529-23ed69c7dd98" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151014T084942Z:7fffb188-feda-4835-a7bb-70529f188938" + "NORTHEUROPE:20151022T122130Z:7b55aef4-86b1-4965-a529-23ed69c7dd98" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Wed, 14 Oct 2015 08:49:41 GMT" + "Thu, 22 Oct 2015 12:21:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config index df54cb1ab519..e0d17d7a2d46 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseAuditingCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseAuditingCmdletBase.cs index b71e315782ff..a3bc9f419295 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseAuditingCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseAuditingCmdletBase.cs @@ -50,7 +50,7 @@ protected override SqlAuditAdapter InitModelAdapter(AzureSubscription subscripti /// The model object with the data to be sent to the REST endpoints protected override DatabaseAuditingPolicyModel PersistChanges(DatabaseAuditingPolicyModel model) { - ModelAdapter.SetDatabaseAuditingPolicy(model, clientRequestId); + ModelAdapter.SetDatabaseAuditingPolicy(model, clientRequestId, DefaultContext.Environment.Endpoints[AzureEnvironment.Endpoint.StorageEndpointSuffix]); return null; } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseServerAuditingCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseServerAuditingCmdletBase.cs index 3789cc1a808a..addbc31aeb9e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseServerAuditingCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SqlDatabaseServerAuditingCmdletBase.cs @@ -58,7 +58,7 @@ protected override SqlAuditAdapter InitModelAdapter(AzureSubscription subscripti /// The model object with the data to be sent to the REST endpoints protected override ServerAuditingPolicyModel PersistChanges(ServerAuditingPolicyModel model) { - ModelAdapter.SetServerAuditingPolicy(model, clientRequestId); + ModelAdapter.SetServerAuditingPolicy(model, clientRequestId, DefaultContext.Environment.Endpoints[AzureEnvironment.Endpoint.StorageEndpointSuffix]); return null; } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs index ae092fbebab6..c46be4398c42 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs @@ -243,22 +243,22 @@ private void ModelizeRetentionInfo(BaseAuditingPolicyModel model, string retenti /// /// Transforms the given model to its endpoints acceptable structure and sends it to the endpoint /// - public void SetServerAuditingPolicy(ServerAuditingPolicyModel model, String clientId) + public void SetServerAuditingPolicy(ServerAuditingPolicyModel model, String clientId, string storageEndpointSuffix) { - ServerAuditingPolicyCreateOrUpdateParameters parameters = PolicizeServerAuditingModel(model); + ServerAuditingPolicyCreateOrUpdateParameters parameters = PolicizeServerAuditingModel(model, storageEndpointSuffix); Communicator.SetServerAuditingPolicy(model.ResourceGroupName, model.ServerName, clientId, parameters); } /// /// Transforms the given model to its endpoints acceptable structure and sends it to the endpoint /// - public void SetDatabaseAuditingPolicy(DatabaseAuditingPolicyModel model, String clientId) + public void SetDatabaseAuditingPolicy(DatabaseAuditingPolicyModel model, String clientId, string storageEndpointSuffix) { if (!IsDatabaseInServiceTierForPolicy(model, clientId)) { throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.DatabaseNotInServiceTierForAuditingPolicy); } - DatabaseAuditingPolicyCreateOrUpdateParameters parameters = PolicizeDatabaseAuditingModel(model); + DatabaseAuditingPolicyCreateOrUpdateParameters parameters = PolicizeDatabaseAuditingModel(model, storageEndpointSuffix); Communicator.SetDatabaseAuditingPolicy(model.ResourceGroupName, model.ServerName, model.DatabaseName, clientId, parameters); } @@ -280,7 +280,7 @@ private bool IsDatabaseInServiceTierForPolicy(DatabaseAuditingPolicyModel model, /// /// The AuditingPolicy model object /// The communication model object - private DatabaseAuditingPolicyCreateOrUpdateParameters PolicizeDatabaseAuditingModel(DatabaseAuditingPolicyModel model) + private DatabaseAuditingPolicyCreateOrUpdateParameters PolicizeDatabaseAuditingModel(DatabaseAuditingPolicyModel model, string storageEndpointSuffix) { DatabaseAuditingPolicyCreateOrUpdateParameters updateParameters = new DatabaseAuditingPolicyCreateOrUpdateParameters(); DatabaseAuditingPolicyProperties properties = new DatabaseAuditingPolicyProperties(); @@ -290,7 +290,7 @@ private DatabaseAuditingPolicyCreateOrUpdateParameters PolicizeDatabaseAuditingM properties.StorageAccountName = ExtractStorageAccountName(model); properties.StorageAccountResourceGroupName = ExtractStorageAccountResourceGroup(properties.StorageAccountName); properties.StorageAccountSubscriptionId = ExtractStorageAccountSubscriptionId(properties.StorageAccountName); - properties.StorageTableEndpoint = ExtractStorageAccountTableEndpoint(properties.StorageAccountName); + properties.StorageTableEndpoint = ExtractStorageAccountTableEndpoint(properties.StorageAccountName, storageEndpointSuffix); properties.StorageAccountKey = ExtractStorageAccountKey(properties.StorageAccountName, model, properties.StorageAccountResourceGroupName, StorageKeyKind.Primary); properties.StorageAccountSecondaryKey = ExtractStorageAccountKey(properties.StorageAccountName, model, properties.StorageAccountResourceGroupName, StorageKeyKind.Secondary); properties.EventTypesToAudit = ExtractEventTypes(model); @@ -304,7 +304,7 @@ private DatabaseAuditingPolicyCreateOrUpdateParameters PolicizeDatabaseAuditingM /// /// The AuditingPolicy model object /// The communication model object - private ServerAuditingPolicyCreateOrUpdateParameters PolicizeServerAuditingModel(ServerAuditingPolicyModel model) + private ServerAuditingPolicyCreateOrUpdateParameters PolicizeServerAuditingModel(ServerAuditingPolicyModel model, string storageEndpointSuffix) { ServerAuditingPolicyCreateOrUpdateParameters updateParameters = new ServerAuditingPolicyCreateOrUpdateParameters(); ServerAuditingPolicyProperties properties = new ServerAuditingPolicyProperties(); @@ -313,7 +313,7 @@ private ServerAuditingPolicyCreateOrUpdateParameters PolicizeServerAuditingModel properties.StorageAccountName = ExtractStorageAccountName(model); properties.StorageAccountResourceGroupName = ExtractStorageAccountResourceGroup(properties.StorageAccountName); properties.StorageAccountSubscriptionId = ExtractStorageAccountSubscriptionId(properties.StorageAccountName); - properties.StorageTableEndpoint = ExtractStorageAccountTableEndpoint(properties.StorageAccountName); + properties.StorageTableEndpoint = ExtractStorageAccountTableEndpoint(properties.StorageAccountName, storageEndpointSuffix); properties.StorageAccountKey = ExtractStorageAccountKey(properties.StorageAccountName, model, properties.StorageAccountResourceGroupName, StorageKeyKind.Primary); properties.StorageAccountSecondaryKey = ExtractStorageAccountKey(properties.StorageAccountName, model, properties.StorageAccountResourceGroupName, StorageKeyKind.Secondary); properties.EventTypesToAudit = ExtractEventTypes(model); @@ -421,7 +421,7 @@ private bool IsEventTypeOn(AuditEventType lookedForType, AuditEventType[] userSe /// /// Extracts the storage account endpoint /// - private string ExtractStorageAccountTableEndpoint(string storageName) + private string ExtractStorageAccountTableEndpoint(string storageName, string endpointSuffix) { if (IgnoreStorage) { @@ -431,7 +431,7 @@ private string ExtractStorageAccountTableEndpoint(string storageName) { return FetchedStorageAccountTableEndpoint; } - return AzureCommunicator.GetStorageTableEndpoint(Context, storageName); + return string.Format("https://{0}.table.{1}", storageName, endpointSuffix); } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index d6be74ee032a..59cf8aedc37c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -255,7 +255,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs index 3ef896990b5a..3b8bfdd3e0bb 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs @@ -199,29 +199,6 @@ public string GetStorageResourceGroup(string storageAccountName) } } - /// - /// Gets the storage table endpoint the given storage account - /// - public string GetStorageTableEndpoint(AzureContext context, string storageAccountName) - { - try - { - List endpoints = new List(GetCurrentStorageClient(context).StorageAccounts.Get(storageAccountName).StorageAccount.Properties.Endpoints); - return endpoints.Find(u => u.AbsoluteUri.Contains(".table.")).AbsoluteUri; - } - catch - { - try - { - return GetCurrentStorageV2Client(context).StorageAccounts.List().StorageAccounts.Where(a => a.Name == storageAccountName).First().PrimaryEndpoints.Table.AbsoluteUri; - } - catch - { - throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.StorageAccountNotFound, storageAccountName)); - } - } - } - /// /// Lazy creation of a single instance of a storage client /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs index ce4a24fdf2af..8911ff856790 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs @@ -85,6 +85,16 @@ internal AzureSqlCmdletBase() /// An initialized and ready to use ModelAdapter object protected abstract A InitModelAdapter(AzureSubscription subscription); + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected virtual object TransformModelToOutputObject(M model) + { + return model; + } + /// /// Executes the cmdlet /// @@ -99,14 +109,14 @@ protected override void ProcessRecord() { if (WriteResult()) { - this.WriteObject(responseModel, true); + this.WriteObject(TransformModelToOutputObject(responseModel), true); } } else { if (WriteResult()) { - this.WriteObject(updatedModel); + this.WriteObject(TransformModelToOutputObject(updatedModel)); } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs index 2c8c4dbeb7c2..ee68abbd6ad0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs @@ -29,21 +29,6 @@ namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet /// public abstract class BuildAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMaskingRuleCmdletBase { - /// - /// Gets or sets the schema name - /// - public virtual string SchemaName { get; set; } - - /// - /// Gets or sets the table name - /// - public virtual string TableName { get; set; } - - /// - /// Gets or sets the column name - /// - public virtual string ColumnName { get; set; } - /// /// Gets or sets the masking function - the definition of this property as a cmdlet parameter is done in the subclasses /// @@ -91,12 +76,7 @@ public abstract class BuildAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMask /// A model object protected override IEnumerable ApplyUserInputToModel(IEnumerable rules) { - string errorMessage = ValidateRuleTarget(rules); - if (string.IsNullOrEmpty(errorMessage)) - { - errorMessage = ValidateOperation(rules); - } - + string errorMessage = ValidateOperation(rules); if(!string.IsNullOrEmpty(errorMessage)) { throw new Exception(errorMessage); @@ -106,20 +86,6 @@ protected override IEnumerable ApplyUserInputToMod return UpdateRuleList(rules, rule); } - /// - /// Validation that the rule's target is set properly to be either a table and column for which there's no other rule, or an alias for which there's no other rule. - /// - /// The data masking rules of the current database - /// A string containing error message or null in case all is fine - protected string ValidateRuleTarget(IEnumerable rules) - { - if (rules.Any(r => r.TableName == TableName && r.ColumnName == ColumnName && r.RuleId != RuleId)) - { - return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.DataMaskingTableAndColumnUsedError, TableName, ColumnName); - } - return null; - } - /// /// Update the rule this cmdlet is operating on based on the values provided by the user /// @@ -254,7 +220,7 @@ private MaskingFunction ModelizeMaskingFunction() /// The model object with the data to be sent to the REST endpoints protected override IEnumerable PersistChanges(IEnumerable rules) { - ModelAdapter.SetDatabaseDataMaskingRule(rules.First(r => r.RuleId == RuleId), clientRequestId); + ModelAdapter.SetDatabaseDataMaskingRule(rules.First(IsModelOfRule), clientRequestId); return null; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/GetAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/GetAzureSqlDatabaseDataMaskingRule.cs index f0ce8191a796..5437c45dd6c1 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/GetAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/GetAzureSqlDatabaseDataMaskingRule.cs @@ -13,7 +13,9 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Sql.DataMasking.Model; +using System; using System.Collections.Generic; +using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet @@ -23,13 +25,37 @@ namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet /// [Cmdlet(VerbsCommon.Get, "AzureRmSqlDatabaseDataMaskingRule"), OutputType(typeof(IEnumerable))] public class GetAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMaskingRuleCmdletBase - { + { /// - /// Gets or sets the id of the rule use, if not provided then the list of rules for this DB is returned + /// Gets or sets the schema name /// - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Data Masking rule Id.")] - public override string RuleId { get; set; } // intentionally overiding to make this property non mandatory (thus allow a LIST call) + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The schema name.")] + [ValidateNotNullOrEmpty] + public override string SchemaName { get; set; } + /// + /// Gets or sets the table name + /// + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")] + [ValidateNotNullOrEmpty] + public override string TableName { get; set; } + + /// + /// Gets or sets the column name + /// + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")] + [ValidateNotNullOrEmpty] + public override string ColumnName { get; set; } + + protected override object TransformModelToOutputObject(IEnumerable model) + { + Predicate colPred = (DatabaseDataMaskingRuleModel r) => { return string.IsNullOrEmpty(ColumnName) ? true : r.ColumnName == ColumnName; }; + Predicate tablePred = (DatabaseDataMaskingRuleModel r) => { return string.IsNullOrEmpty(TableName) ? true : r.TableName == TableName; }; + Predicate schemaPred = (DatabaseDataMaskingRuleModel r) => { return string.IsNullOrEmpty(SchemaName) ? true : r.SchemaName == SchemaName; }; + return model.Where(r => { return colPred(r) && tablePred(r) && schemaPred(r); }).ToList(); + } + + /// /// No sending is needed as this is a Get cmdlet /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs index b69e9924537d..b80c3bbe9b63 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs @@ -30,27 +30,6 @@ namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet [Cmdlet(VerbsCommon.New, "AzureRmSqlDatabaseDataMaskingRule")] public class NewAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaskingRule { - /// - /// Gets or sets the column name - /// - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")] - [ValidateNotNullOrEmpty] - public override string ColumnName { get; set; } - - /// - /// Gets or sets the schema name - /// - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The schema name.")] - [ValidateNotNullOrEmpty] - public override string SchemaName { get; set; } - - /// - /// Gets or sets the table name - /// - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")] - [ValidateNotNullOrEmpty] - public override string TableName { get; set; } - /// /// Gets or sets the masking function /// @@ -65,7 +44,7 @@ public class NewAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaski /// A model object protected override IEnumerable GetEntity() { - return ModelAdapter.GetDatabaseDataMaskingRule(ResourceGroupName, ServerName, DatabaseName, clientRequestId); + return ModelAdapter.GetDatabaseDataMaskingRules(ResourceGroupName, ServerName, DatabaseName, clientRequestId); } /// @@ -75,15 +54,9 @@ protected override IEnumerable GetEntity() /// An error message or null if all is fine protected override string ValidateOperation(IEnumerable rules) { - var ruleIdRegex = new Regex("^[^/\\\\#+=<>*%&:?]*[^/\\\\#+=<>*%&:?.]$"); - - if (!ruleIdRegex.IsMatch(RuleId)) // an invalid rule name - { - return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.NewDataMaskingRuleIdIsNotValid, RuleId); - } - if(rules.Any(r=> r.RuleId == RuleId)) + if (rules.Any(IsModelOfRule)) { - return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.NewDataMaskingRuleIdAlreadyExistError, RuleId); + return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.NewDataMaskingRuleIdAlreadyExistError, ColumnName, TableName, SchemaName); } return null; } @@ -99,7 +72,6 @@ protected override DatabaseDataMaskingRuleModel GetRule(IEnumerable PersistChanges(IEnumerable rules) { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveDatabaseDataMaskingRuleDescription, RuleId, DatabaseName), - string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveDatabaseDataMaskingRuleWarning, RuleId, DatabaseName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveDatabaseDataMaskingRuleDescription, + ColumnName, TableName, SchemaName, DatabaseName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveDatabaseDataMaskingRuleWarning, + ColumnName, TableName, SchemaName, DatabaseName), Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return null; diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs index d4335e911555..b3a7ff930e0d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs @@ -29,25 +29,6 @@ namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet [Cmdlet(VerbsCommon.Set, "AzureRmSqlDatabaseDataMaskingRule")] public class SetAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaskingRule { - - /// - /// Gets or sets the column name - /// - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")] - public override string ColumnName { get; set; } - - /// - /// Gets or sets the table name - /// - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")] - public override string TableName { get; set; } - - /// - /// Gets or sets the schema name - /// - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The schema name.")] - public override string SchemaName { get; set; } - /// /// Gets or sets the masking function /// @@ -62,9 +43,9 @@ public class SetAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaski /// An error message or null if all is fine protected override string ValidateOperation(IEnumerable rules) { - if(!rules.Any(r=> r.RuleId == RuleId)) + if (!rules.Any(IsModelOfRule)) { - return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.SetDataMaskingRuleIdDoesNotExistError, RuleId); + return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.SetDataMaskingRuleIdDoesNotExistError, SchemaName, TableName, ColumnName); } return null; } @@ -75,8 +56,8 @@ protected override string ValidateOperation(IEnumerableThe database's data masking rules /// A data masking rule object, initialized for the user provided rule identity protected override DatabaseDataMaskingRuleModel GetRule(IEnumerable rules) - { - return rules.First(r=> r.RuleId == RuleId); + { + return rules.First(IsModelOfRule); } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SqlDatabaseDataMaskingRuleCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SqlDatabaseDataMaskingRuleCmdletBase.cs index 59618d1dcd7e..f84e2469d57c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SqlDatabaseDataMaskingRuleCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SqlDatabaseDataMaskingRuleCmdletBase.cs @@ -28,11 +28,41 @@ namespace Microsoft.Azure.Commands.Sql.DataMasking.Cmdlet public abstract class SqlDatabaseDataMaskingRuleCmdletBase : AzureSqlDatabaseCmdletBase, SqlDataMaskingAdapter> { /// - /// Gets or sets the id of the rule use. + /// Gets or sets the schema name /// - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Data Masking rule Id.")] + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The schema name.")] [ValidateNotNullOrEmpty] - public virtual string RuleId { get; set; } + public virtual string SchemaName { get; set; } + + /// + /// Gets or sets the table name + /// + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")] + [ValidateNotNullOrEmpty] + public virtual string TableName { get; set; } + + /// + /// Gets or sets the column name + /// + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")] + [ValidateNotNullOrEmpty] + public virtual string ColumnName { get; set; } + + /// + /// Checks whether the model of the current cmdlet is the same as the model of the given rule + /// + protected bool IsModelOfRule(BaseDataMaskingRuleModel rule) + { + return rule.ColumnName == ColumnName && rule.TableName == TableName && rule.SchemaName == SchemaName; + } + + /// + /// The model is a list of rules. This method would return the specific rule that was updated + /// + protected override object TransformModelToOutputObject(IEnumerable model) + { + return model.FirstOrDefault(IsModelOfRule); + } /// /// Provides the model element that this cmdlet operates on @@ -40,7 +70,7 @@ public abstract class SqlDatabaseDataMaskingRuleCmdletBase : AzureSqlDatabaseCmd /// A model object protected override IEnumerable GetEntity() { - return ModelAdapter.GetDatabaseDataMaskingRule(ResourceGroupName, ServerName, DatabaseName, clientRequestId, RuleId); + return ModelAdapter.GetDatabaseDataMaskingRules(ResourceGroupName, ServerName, DatabaseName, clientRequestId); } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Model/BaseDataMaskingRuleModel.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Model/BaseDataMaskingRuleModel.cs index bf3857d4c744..76123294055d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Model/BaseDataMaskingRuleModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Model/BaseDataMaskingRuleModel.cs @@ -34,11 +34,6 @@ public class BaseDataMaskingRuleModel /// public string ServerName { get; set; } - /// - /// Gets or sets the rule id - /// - public string RuleId { get; set; } - /// /// Gets or sets the name of the chema that contains the table on which the rule operates on /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs index 1d7602e74a6b..7aa18334c67d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs @@ -21,6 +21,9 @@ using System.Globalization; using System.Linq; using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Database.Services; +using Microsoft.Azure.Commands.Sql.Server.Services; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Sql.DataMasking.Services { @@ -50,12 +53,26 @@ public SqlDataMaskingAdapter(AzureContext context) Subscription = context.Subscription; Communicator = new DataMaskingEndpointsCommunicator(Context); } + + /// + /// Checks whether the server is applicable for dynamic data masking + /// + private bool IsRightServerVersionForDataMasking(string resourceGroupName, string serverName, string clientId) + { + AzureSqlServerCommunicator dbCommunicator = new AzureSqlServerCommunicator(Context); + Management.Sql.Models.Server server = dbCommunicator.Get(resourceGroupName, serverName, clientId); + return server.Properties.Version == "12.0"; + } /// /// Provides a cmdlet model representation of a specific database's data making policy /// public DatabaseDataMaskingPolicyModel GetDatabaseDataMaskingPolicy(string resourceGroup, string serverName, string databaseName, string requestId) { + if (!IsRightServerVersionForDataMasking(resourceGroup, serverName, requestId)) + { + throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerNotApplicableForDataMasking); + } DataMaskingPolicy policy = Communicator.GetDatabaseDataMaskingPolicy(resourceGroup, serverName, databaseName, requestId); DatabaseDataMaskingPolicyModel dbPolicyModel = ModelizeDatabaseDataMaskingPolicy(policy); dbPolicyModel.ResourceGroupName = resourceGroup; @@ -69,6 +86,10 @@ public DatabaseDataMaskingPolicyModel GetDatabaseDataMaskingPolicy(string resour /// public void SetDatabaseDataMaskingPolicy(DatabaseDataMaskingPolicyModel model, String clientId) { + if (!IsRightServerVersionForDataMasking(model.ResourceGroupName,model.ServerName, clientId)) + { + throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerNotApplicableForDataMasking); + } DataMaskingPolicyCreateOrUpdateParameters parameters = PolicizeDatabaseDataMaskingModel(model); Communicator.SetDatabaseDataMaskingPolicy(model.ResourceGroupName, model.ServerName, model.DatabaseName, clientId, parameters); } @@ -76,17 +97,11 @@ public void SetDatabaseDataMaskingPolicy(DatabaseDataMaskingPolicyModel model, S /// /// Provides the data masking rule model for a specific data masking rule /// - public IList GetDatabaseDataMaskingRule(string resourceGroup, string serverName, string databaseName, string requestId, string ruleId = null) + public IList GetDatabaseDataMaskingRules(string resourceGroup, string serverName, string databaseName, string requestId) { - IList rules = - (from r in Communicator.ListDataMaskingRules(resourceGroup, serverName, databaseName, requestId) - where ruleId == null || r.Properties.Id == ruleId - select ModelizeDatabaseDataMaskingRule(r, resourceGroup, serverName, databaseName)).ToList(); - if(ruleId != null && rules.Count == 0) - { - throw new Exception(string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.DataMaskingRuleDoesNotExist, ruleId)); - } - return rules; + return Communicator.ListDataMaskingRules(resourceGroup, serverName, databaseName, requestId). + Select(r => ModelizeDatabaseDataMaskingRule(r, resourceGroup, serverName, databaseName)). + ToList(); } /// @@ -94,6 +109,11 @@ public IList GetDatabaseDataMaskingRule(string res /// public void SetDatabaseDataMaskingRule(DatabaseDataMaskingRuleModel model, String clientId) { + if (!IsRightServerVersionForDataMasking(model.ResourceGroupName, model.ServerName, clientId)) + { + throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerNotApplicableForDataMasking); + } + DatabaseDataMaskingPolicyModel policyModel = GetDatabaseDataMaskingPolicy(model.ResourceGroupName, model.ServerName, model.DatabaseName, clientId); if (policyModel.DataMaskingState == DataMaskingStateType.Uninitialized) { @@ -101,7 +121,7 @@ public void SetDatabaseDataMaskingRule(DatabaseDataMaskingRuleModel model, Strin SetDatabaseDataMaskingPolicy(policyModel, clientId); } DataMaskingRuleCreateOrUpdateParameters parameters = PolicizeDatabaseDataRuleModel(model); - Communicator.SetDatabaseDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.RuleId, clientId, parameters); + Communicator.SetDatabaseDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, ExtractDataMaskingRuleId(model), clientId, parameters); } /// @@ -109,18 +129,30 @@ public void SetDatabaseDataMaskingRule(DatabaseDataMaskingRuleModel model, Strin /// public void RemoveDatabaseDataMaskingRule(DatabaseDataMaskingRuleModel model, String clientId) { + if (!IsRightServerVersionForDataMasking(model.ResourceGroupName, model.ServerName, clientId)) + { + throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerNotApplicableForDataMasking); + } DataMaskingRuleCreateOrUpdateParameters parameters = PolicizeDatabaseDataRuleModel(model); parameters.Properties.RuleState = SecurityConstants.Disabled; - Communicator.SetDatabaseDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.RuleId, clientId, parameters); + string ruleId = ExtractDataMaskingRuleId(model); + Communicator.SetDatabaseDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, ruleId, clientId, parameters); try { - Communicator.DeleteDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.RuleId, clientId); + Communicator.DeleteDataMaskingRule(model.ResourceGroupName, model.ServerName, model.DatabaseName, ruleId, clientId); } catch { } } + private string ExtractDataMaskingRuleId(DatabaseDataMaskingRuleModel model) + { + var baseId = string.Format("{0}_{1}_{2}", model.SchemaName, model.TableName, model.ColumnName); + Regex rgx = new Regex("[/\\\\#+=<>*%&:?.]"); + return rgx.Replace(baseId, ""); + } + /// /// Takes the cmdlets model object and transform it to the policy as expected by the endpoint /// @@ -131,7 +163,7 @@ private DataMaskingRuleCreateOrUpdateParameters PolicizeDatabaseDataRuleModel(Da DataMaskingRuleCreateOrUpdateParameters updateParameters = new DataMaskingRuleCreateOrUpdateParameters(); DataMaskingRuleProperties properties = new DataMaskingRuleProperties(); updateParameters.Properties = properties; - properties.Id = model.RuleId; + properties.Id = ExtractDataMaskingRuleId(model); properties.TableName = model.TableName; properties.SchemaName = model.SchemaName; properties.ColumnName = model.ColumnName; @@ -173,7 +205,6 @@ private DatabaseDataMaskingRuleModel ModelizeDatabaseDataMaskingRule(DataMasking dbRuleModel.ResourceGroupName = resourceGroup; dbRuleModel.ServerName = serverName; dbRuleModel.DatabaseName = databaseName; - dbRuleModel.RuleId = properties.Id; dbRuleModel.ColumnName = properties.ColumnName; dbRuleModel.TableName = properties.TableName; dbRuleModel.SchemaName = properties.SchemaName; diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs index a26f983a46e8..56eb638d0b90 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.Properties { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - public class Resources { + internal class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,7 +36,7 @@ internal Resources() { /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Resources.ResourceManager ResourceManager { + internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.Sql.Properties.Resources", typeof(Resources).Assembly); @@ -51,7 +51,7 @@ internal Resources() { /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { + internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -63,7 +63,7 @@ internal Resources() { /// /// Looks up a localized string similar to More than one Active Directory group with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct group. To get the object id use Get-AzureRmADGroup -SearchString "{0}". /// - public static string ADGroupMoreThanOneFound { + internal static string ADGroupMoreThanOneFound { get { return ResourceManager.GetString("ADGroupMoreThanOneFound", resourceCulture); } @@ -72,7 +72,7 @@ public static string ADGroupMoreThanOneFound { /// /// Looks up a localized string similar to Cannot find the Azure Active Directory object '{0}'. Please make sure that the user or group you are authorizing is registered in the current subscription's Azure Active directory. To get a list of Azure Active Directory groups use Get-AzureRmADGroup, or to get a list of Azure Active Directory users use Get-AzureRmADUser.. /// - public static string ADObjectNotFound { + internal static string ADObjectNotFound { get { return ResourceManager.GetString("ADObjectNotFound", resourceCulture); } @@ -81,7 +81,7 @@ public static string ADObjectNotFound { /// /// Looks up a localized string similar to More than one Azure Active Directory user with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct user. To get the object id use Get-AzureRmADUser -SearchString "{0}". /// - public static string ADUserMoreThanOneFound { + internal static string ADUserMoreThanOneFound { get { return ResourceManager.GetString("ADUserMoreThanOneFound", resourceCulture); } @@ -90,7 +90,7 @@ public static string ADUserMoreThanOneFound { /// /// Looks up a localized string similar to Database with name: '{0}' already exists in server '{1}'.. /// - public static string DatabaseNameExists { + internal static string DatabaseNameExists { get { return ResourceManager.GetString("DatabaseNameExists", resourceCulture); } @@ -99,52 +99,34 @@ public static string DatabaseNameExists { /// /// Looks up a localized string similar to Auditing cannot be enabled . Upgrade to Basic, Standard or Premium Service Tier to enable auditing on your database(s). /// - public static string DatabaseNotInServiceTierForAuditingPolicy { + internal static string DatabaseNotInServiceTierForAuditingPolicy { get { return ResourceManager.GetString("DatabaseNotInServiceTierForAuditingPolicy", resourceCulture); } } - /// - /// Looks up a localized string similar to A data masking rule for alias '{0}' is already exists. - /// - public static string DataMaskingAliasAlreadyUsedError { - get { - return ResourceManager.GetString("DataMaskingAliasAlreadyUsedError", resourceCulture); - } - } - /// /// Looks up a localized string similar to Cannot set a lower bound which is larger than the higher bound. /// - public static string DataMaskingNumberRuleIntervalDefinitionError { + internal static string DataMaskingNumberRuleIntervalDefinitionError { get { return ResourceManager.GetString("DataMaskingNumberRuleIntervalDefinitionError", resourceCulture); } } /// - /// Looks up a localized string similar to The rule {0} does not exist. + /// Looks up a localized string similar to No dynamic data masking rule is defined for column: "{0}" table "{1}" schema "{2}" . /// - public static string DataMaskingRuleDoesNotExist { + internal static string DataMaskingRuleDoesNotExist { get { return ResourceManager.GetString("DataMaskingRuleDoesNotExist", resourceCulture); } } - /// - /// Looks up a localized string similar to A data masking rule for the table '{0}' and column '{1}' already exists. - /// - public static string DataMaskingTableAndColumnUsedError { - get { - return ResourceManager.GetString("DataMaskingTableAndColumnUsedError", resourceCulture); - } - } - /// /// Looks up a localized string similar to The {0} cmdlet is deprecated and will be removed in a future release.. /// - public static string DeprecatedCmdletUsageWarning { + internal static string DeprecatedCmdletUsageWarning { get { return ResourceManager.GetString("DeprecatedCmdletUsageWarning", resourceCulture); } @@ -153,7 +135,7 @@ public static string DeprecatedCmdletUsageWarning { /// /// Looks up a localized string similar to Elastic Pool with name: '{0}' already exists in server '{1}'.. /// - public static string ElasticPoolNameExists { + internal static string ElasticPoolNameExists { get { return ResourceManager.GetString("ElasticPoolNameExists", resourceCulture); } @@ -162,7 +144,7 @@ public static string ElasticPoolNameExists { /// /// Looks up a localized string similar to {your_password_here}. /// - public static string EnterPassword { + internal static string EnterPassword { get { return ResourceManager.GetString("EnterPassword", resourceCulture); } @@ -171,7 +153,7 @@ public static string EnterPassword { /// /// Looks up a localized string similar to {your_user_id_here}. /// - public static string EnterUserId { + internal static string EnterUserId { get { return ResourceManager.GetString("EnterUserId", resourceCulture); } @@ -180,7 +162,7 @@ public static string EnterUserId { /// /// Looks up a localized string similar to The Active Directory Group '{0}' is not security enabled. Only Azure Active Directory Security Enabled Groups are supported.. /// - public static string InvalidADGroupNotSecurity { + internal static string InvalidADGroupNotSecurity { get { return ResourceManager.GetString("InvalidADGroupNotSecurity", resourceCulture); } @@ -189,7 +171,7 @@ public static string InvalidADGroupNotSecurity { /// /// Looks up a localized string similar to Cannot use the '{0}' option with other event types.. /// - public static string InvalidEventTypeSet { + internal static string InvalidEventTypeSet { get { return ResourceManager.GetString("InvalidEventTypeSet", resourceCulture); } @@ -198,7 +180,7 @@ public static string InvalidEventTypeSet { /// /// Looks up a localized string similar to Please use Set-AzureRmEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. /// - public static string InvalidGraphEndpoint { + internal static string InvalidGraphEndpoint { get { return ResourceManager.GetString("InvalidGraphEndpoint", resourceCulture); } @@ -207,7 +189,7 @@ public static string InvalidGraphEndpoint { /// /// Looks up a localized string similar to Cannot use audit table retention without specifying TableIdentifier. You may want to use '{0}'.. /// - public static string InvalidRetentionTypeSet { + internal static string InvalidRetentionTypeSet { get { return ResourceManager.GetString("InvalidRetentionTypeSet", resourceCulture); } @@ -216,34 +198,25 @@ public static string InvalidRetentionTypeSet { /// /// Looks up a localized string similar to Please set a valid tenant id in the AzureEnvironment.. /// - public static string InvalidTenantId { + internal static string InvalidTenantId { get { return ResourceManager.GetString("InvalidTenantId", resourceCulture); } } /// - /// Looks up a localized string similar to A data masking rule with the id '{0}' already exist. + /// Looks up a localized string similar to A rule that was defined on the same column already exists.. /// - public static string NewDataMaskingRuleIdAlreadyExistError { + internal static string NewDataMaskingRuleIdAlreadyExistError { get { return ResourceManager.GetString("NewDataMaskingRuleIdAlreadyExistError", resourceCulture); } } - /// - /// Looks up a localized string similar to Rule Id cannot contain '<,>,+,=,#,*,%,&,\,/,?' and cannot end with a '.'. - /// - public static string NewDataMaskingRuleIdIsNotValid { - get { - return ResourceManager.GetString("NewDataMaskingRuleIdIsNotValid", resourceCulture); - } - } - /// /// Looks up a localized string similar to Cannot set auditing policy without a storage account name.. /// - public static string NoStorageAccountWhenConfiguringAuditingPolicy { + internal static string NoStorageAccountWhenConfiguringAuditingPolicy { get { return ResourceManager.GetString("NoStorageAccountWhenConfiguringAuditingPolicy", resourceCulture); } @@ -252,7 +225,7 @@ public static string NoStorageAccountWhenConfiguringAuditingPolicy { /// /// Looks up a localized string similar to PHP Data Objects(PDO) Sample Code:. /// - public static string PdoTitle { + internal static string PdoTitle { get { return ResourceManager.GetString("PdoTitle", resourceCulture); } @@ -261,7 +234,7 @@ public static string PdoTitle { /// /// Looks up a localized string similar to Error connecting to SQL Server. /// - public static string PhpConnectionError { + internal static string PhpConnectionError { get { return ResourceManager.GetString("PhpConnectionError", resourceCulture); } @@ -270,7 +243,7 @@ public static string PhpConnectionError { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database '{0}' on server '{1}'.. /// - public static string RemoveAzureSqlDatabaseDescription { + internal static string RemoveAzureSqlDatabaseDescription { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseDescription", resourceCulture); } @@ -279,7 +252,7 @@ public static string RemoveAzureSqlDatabaseDescription { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database Elastic Pool '{0}' on server '{1}'.. /// - public static string RemoveAzureSqlDatabaseElasticPoolDescription { + internal static string RemoveAzureSqlDatabaseElasticPoolDescription { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseElasticPoolDescription", resourceCulture); } @@ -288,7 +261,7 @@ public static string RemoveAzureSqlDatabaseElasticPoolDescription { /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Database Elastic Pool '{0}' on server '{1}'?. /// - public static string RemoveAzureSqlDatabaseElasticPoolWarning { + internal static string RemoveAzureSqlDatabaseElasticPoolWarning { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseElasticPoolWarning", resourceCulture); } @@ -297,7 +270,7 @@ public static string RemoveAzureSqlDatabaseElasticPoolWarning { /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Database '{0}' on server '{1}'?. /// - public static string RemoveAzureSqlDatabaseWarning { + internal static string RemoveAzureSqlDatabaseWarning { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseWarning", resourceCulture); } @@ -306,7 +279,7 @@ public static string RemoveAzureSqlDatabaseWarning { /// /// Looks up a localized string similar to Removing Azure Sql Server Active Directory Administrator on server '{0}'.. /// - public static string RemoveAzureSqlServerActiveDirectoryAdministratorDescription { + internal static string RemoveAzureSqlServerActiveDirectoryAdministratorDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerActiveDirectoryAdministratorDescription", resourceCulture); } @@ -315,7 +288,7 @@ public static string RemoveAzureSqlServerActiveDirectoryAdministratorDescription /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server '{0}'?. /// - public static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { + internal static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerActiveDirectoryAdministratorWarning", resourceCulture); } @@ -324,7 +297,7 @@ public static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database Server '{0}'.. /// - public static string RemoveAzureSqlServerDescription { + internal static string RemoveAzureSqlServerDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerDescription", resourceCulture); } @@ -333,7 +306,7 @@ public static string RemoveAzureSqlServerDescription { /// /// Looks up a localized string similar to Permanently removing Firewall Rule '{0}' for Azure Sql Database Server '{1}'.. /// - public static string RemoveAzureSqlServerFirewallRuleDescription { + internal static string RemoveAzureSqlServerFirewallRuleDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerFirewallRuleDescription", resourceCulture); } @@ -342,7 +315,7 @@ public static string RemoveAzureSqlServerFirewallRuleDescription { /// /// Looks up a localized string similar to Are you sure you want to remove the Firewall Rule '{0}' for Azure Sql Database Server '{1}'?. /// - public static string RemoveAzureSqlServerFirewallRuleWarning { + internal static string RemoveAzureSqlServerFirewallRuleWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerFirewallRuleWarning", resourceCulture); } @@ -351,25 +324,25 @@ public static string RemoveAzureSqlServerFirewallRuleWarning { /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Database Server '{0}'?. /// - public static string RemoveAzureSqlServerWarning { + internal static string RemoveAzureSqlServerWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerWarning", resourceCulture); } } /// - /// Looks up a localized string similar to Removing firewall rule "{0}" for Microsoft Azure Sql Database "{1}".. + /// Looks up a localized string similar to Removing data masking rule for column:"{0}" table:"{1}" schema:"{2}". /// - public static string RemoveDatabaseDataMaskingRuleDescription { + internal static string RemoveDatabaseDataMaskingRuleDescription { get { return ResourceManager.GetString("RemoveDatabaseDataMaskingRuleDescription", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove the data masking rule "{0}" for Microsoft Azure Sql Database "{1}"?. + /// Looks up a localized string similar to Are you sure you want to remove the data masking rule for column:"{0}" table:"{1}" schema:"{2}"?. /// - public static string RemoveDatabaseDataMaskingRuleWarning { + internal static string RemoveDatabaseDataMaskingRuleWarning { get { return ResourceManager.GetString("RemoveDatabaseDataMaskingRuleWarning", resourceCulture); } @@ -378,7 +351,7 @@ public static string RemoveDatabaseDataMaskingRuleWarning { /// /// Looks up a localized string similar to Firewall Rule with name: '{0}' already exists for server '{1}'.. /// - public static string ServerFirewallRuleNameExists { + internal static string ServerFirewallRuleNameExists { get { return ResourceManager.GetString("ServerFirewallRuleNameExists", resourceCulture); } @@ -387,25 +360,34 @@ public static string ServerFirewallRuleNameExists { /// /// Looks up a localized string similar to Server with name: '{0}' already exists.. /// - public static string ServerNameExists { + internal static string ServerNameExists { get { return ResourceManager.GetString("ServerNameExists", resourceCulture); } } + /// + /// Looks up a localized string similar to Dynamic Data Masking is only available in the latest SQL Database Update (V12). Please upgrade to set it up on your database.. + /// + internal static string ServerNotApplicableForDataMasking { + get { + return ResourceManager.GetString("ServerNotApplicableForDataMasking", resourceCulture); + } + } + /// /// Looks up a localized string similar to Request for upgrade of server '{0}' already exists.. /// - public static string ServerUpgradeExists { + internal static string ServerUpgradeExists { get { return ResourceManager.GetString("ServerUpgradeExists", resourceCulture); } } /// - /// Looks up a localized string similar to A data masking rule with the id '{0}' does not exist. + /// Looks up a localized string similar to A data masking rule for the column does not exist. /// - public static string SetDataMaskingRuleIdDoesNotExistError { + internal static string SetDataMaskingRuleIdDoesNotExistError { get { return ResourceManager.GetString("SetDataMaskingRuleIdDoesNotExistError", resourceCulture); } @@ -423,7 +405,7 @@ internal static string SetSecondaryNoOptionProvided { /// /// Looks up a localized string similar to Confirm. /// - public static string ShouldProcessCaption { + internal static string ShouldProcessCaption { get { return ResourceManager.GetString("ShouldProcessCaption", resourceCulture); } @@ -432,7 +414,7 @@ public static string ShouldProcessCaption { /// /// Looks up a localized string similar to SQL Server Extension Sample Code:. /// - public static string sqlSampleTitle { + internal static string sqlSampleTitle { get { return ResourceManager.GetString("sqlSampleTitle", resourceCulture); } @@ -441,7 +423,7 @@ public static string sqlSampleTitle { /// /// Looks up a localized string similar to Azure Sql Database Elastic Pool name is required for this operation. /// - public static string StandaloneDatabaseActivityNotSupported { + internal static string StandaloneDatabaseActivityNotSupported { get { return ResourceManager.GetString("StandaloneDatabaseActivityNotSupported", resourceCulture); } @@ -450,7 +432,7 @@ public static string StandaloneDatabaseActivityNotSupported { /// /// Looks up a localized string similar to Stopping upgrade for Azure Sql Database Server '{0}'.. /// - public static string StopAzureSqlServerUpgradeDescription { + internal static string StopAzureSqlServerUpgradeDescription { get { return ResourceManager.GetString("StopAzureSqlServerUpgradeDescription", resourceCulture); } @@ -459,7 +441,7 @@ public static string StopAzureSqlServerUpgradeDescription { /// /// Looks up a localized string similar to Are you sure you want to stop the upgrade for Azure Sql Database Server '{0}'?. /// - public static string StopAzureSqlServerUpgradeWarning { + internal static string StopAzureSqlServerUpgradeWarning { get { return ResourceManager.GetString("StopAzureSqlServerUpgradeWarning", resourceCulture); } @@ -468,7 +450,7 @@ public static string StopAzureSqlServerUpgradeWarning { /// /// Looks up a localized string similar to Cannot find a storage account with the name '{0}'. It either does not exist, associated with a different subscription or you do not have the appropriate credentials to access it.. /// - public static string StorageAccountNotFound { + internal static string StorageAccountNotFound { get { return ResourceManager.GetString("StorageAccountNotFound", resourceCulture); } @@ -477,7 +459,7 @@ public static string StorageAccountNotFound { /// /// Looks up a localized string similar to Cannot use a server's auditing policy before it is configured.. /// - public static string UseServerWithoutStorageAccount { + internal static string UseServerWithoutStorageAccount { get { return ResourceManager.GetString("UseServerWithoutStorageAccount", resourceCulture); } diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx index e4ae98af7883..6738d4ea4beb 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx @@ -132,17 +132,11 @@ Auditing cannot be enabled . Upgrade to Basic, Standard or Premium Service Tier to enable auditing on your database(s) - - A data masking rule for alias '{0}' is already exists - Cannot set a lower bound which is larger than the higher bound - The rule {0} does not exist - - - A data masking rule for the table '{0}' and column '{1}' already exists + No dynamic data masking rule is defined for column: "{0}" table "{1}" schema "{2}" The {0} cmdlet is deprecated and will be removed in a future release. @@ -172,10 +166,7 @@ Please set a valid tenant id in the AzureEnvironment. - A data masking rule with the id '{0}' already exist - - - Rule Id cannot contain '<,>,+,=,#,*,%,&,\,/,?' and cannot end with a '.' + A rule that was defined on the same column already exists. Cannot set auditing policy without a storage account name. @@ -217,10 +208,10 @@ Are you sure you want to remove the Azure Sql Database Server '{0}'? - Removing firewall rule "{0}" for Microsoft Azure Sql Database "{1}". + Removing data masking rule for column:"{0}" table:"{1}" schema:"{2}" - Are you sure you want to remove the data masking rule "{0}" for Microsoft Azure Sql Database "{1}"? + Are you sure you want to remove the data masking rule for column:"{0}" table:"{1}" schema:"{2}"? Firewall Rule with name: '{0}' already exists for server '{1}'. @@ -232,7 +223,7 @@ Request for upgrade of server '{0}' already exists. - A data masking rule with the id '{0}' does not exist + A data masking rule for the column does not exist Confirm @@ -258,4 +249,7 @@ No Set Options were provided + + Dynamic Data Masking is only available in the latest SQL Database Update (V12). Please upgrade to set it up on your database. + \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index e3d1eb4c1591..866e181c5ebf 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Storage/AzureRM.Storage.psd1 b/src/ResourceManager/Storage/AzureRM.Storage.psd1 index 1397ef5c9313..174e7a92ed1d 100644 --- a/src/ResourceManager/Storage/AzureRM.Storage.psd1 +++ b/src/ResourceManager/Storage/AzureRM.Storage.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.1' +ModuleVersion = '0.10.2' # ID used to uniquely identify this module GUID = 'da67eaa7-4cb1-4bfa-a194-8bf3faae8ac5' diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj index 4d87a89c4701..f274d1779581 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj @@ -40,7 +40,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config b/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config index 01926e5f08b6..a8fae6aab84a 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj b/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj index 410ba928033c..ea2335b1e7ab 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj @@ -54,7 +54,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/packages.config b/src/ResourceManager/Storage/Commands.Management.Storage/packages.config index d0b635f0ed23..ef3ea70ad1e1 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/packages.config +++ b/src/ResourceManager/Storage/Commands.Management.Storage/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 index d46f9efa833b..a9ea2edf1061 100644 --- a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 +++ b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '59713673-194f-418a-b1f2-ac60db82edf9' diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj index 3bfbd646e821..64937b9c0192 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj @@ -48,7 +48,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config index 5547ca447479..89f307eda4a9 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj index da749a5a3de7..00e020b51410 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj @@ -55,7 +55,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config index 24a9736607f8..879959ab250c 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Tags/AzureRM.Tags.psd1 b/src/ResourceManager/Tags/AzureRM.Tags.psd1 index 0d078baf8a62..93a8b97f33dc 100644 --- a/src/ResourceManager/Tags/AzureRM.Tags.psd1 +++ b/src/ResourceManager/Tags/AzureRM.Tags.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '59713673-194f-418a-b1f2-ac60db82edf9' diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index bb43f944b042..b01a284e5353 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Tags/Commands.Tags/packages.config b/src/ResourceManager/Tags/Commands.Tags/packages.config index 0fb80d976964..964c5dee1dd5 100644 --- a/src/ResourceManager/Tags/Commands.Tags/packages.config +++ b/src/ResourceManager/Tags/Commands.Tags/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/TrafficManager/AzureRM.TrafficManager.psd1 b/src/ResourceManager/TrafficManager/AzureRM.TrafficManager.psd1 index 7e666e8cf3bf..d01ff1f7bdd0 100644 --- a/src/ResourceManager/TrafficManager/AzureRM.TrafficManager.psd1 +++ b/src/ResourceManager/TrafficManager/AzureRM.TrafficManager.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = '59713673-194f-418a-b1f2-ac60db82edf9' diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager.Test.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager.Test.csproj index 045926b6ec25..8946093f641f 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager.Test.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager.Test.csproj @@ -45,7 +45,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config index a3bd0c54870a..f7e6f7192b68 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager.csproj index 436012239ba0..2c3807b72bfd 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager.csproj @@ -52,7 +52,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config index 4124c4d1658c..b81f8b5014dc 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/UsageAggregates/AzureRM.UsageAggregates.psd1 b/src/ResourceManager/UsageAggregates/AzureRM.UsageAggregates.psd1 index 8f72d515bf3a..52ebf3b0b4c5 100644 --- a/src/ResourceManager/UsageAggregates/AzureRM.UsageAggregates.psd1 +++ b/src/ResourceManager/UsageAggregates/AzureRM.UsageAggregates.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'e43e47c8-8bff-4013-b003-ded1741f403a' diff --git a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj index f1d3afae44c2..26f916cf2958 100644 --- a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj +++ b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj @@ -47,7 +47,7 @@ True - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/packages.config b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/packages.config index e2e2ccbcf0c8..60b2a8a39ff7 100644 --- a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/packages.config +++ b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/Commands.UsageAggregates.csproj b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/Commands.UsageAggregates.csproj index 0c09f669157e..423ad98419a7 100644 --- a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/Commands.UsageAggregates.csproj +++ b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/Commands.UsageAggregates.csproj @@ -49,7 +49,7 @@ True - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/packages.config b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/packages.config index 464012e9b860..8ecffaa7f5bd 100644 --- a/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/packages.config +++ b/src/ResourceManager/UsageAggregates/Commands.UsageAggregates/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/Websites/AzureRM.Websites.psd1 b/src/ResourceManager/Websites/AzureRM.Websites.psd1 index 0d484a1bfd51..a952ec80f873 100644 --- a/src/ResourceManager/Websites/AzureRM.Websites.psd1 +++ b/src/ResourceManager/Websites/AzureRM.Websites.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '0.10.1' # ID used to uniquely identify this module GUID = 'cc69c625-e961-43f4-8b50-0061eba6e4b6' diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj index d98653897e66..069747ad728c 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -47,7 +47,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config index ce28f7ab5e73..1cf90cf00df0 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 6e3cd921cb8e..3f52b556c5f9 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -55,7 +55,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ResourceManager/Websites/Commands.Websites/packages.config b/src/ResourceManager/Websites/Commands.Websites/packages.config index 1518a8f0586f..4c4f3b4e657c 100644 --- a/src/ResourceManager/Websites/Commands.Websites/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj b/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj index 207ebf6a3fb2..6bfa1a5fdab0 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config b/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config index 67dfbf3d3259..f3ae540234c2 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj b/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj index a4495debae15..867218adb953 100644 --- a/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj +++ b/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj @@ -59,7 +59,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Automation/Commands.Automation/packages.config b/src/ServiceManagement/Automation/Commands.Automation/packages.config index 17de6e60d939..591e21c651aa 100644 --- a/src/ServiceManagement/Automation/Commands.Automation/packages.config +++ b/src/ServiceManagement/Automation/Commands.Automation/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj b/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj index c6ba7e92dfa8..d59bd5a1847c 100644 --- a/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj +++ b/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs b/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs index b30769e5b3f6..300b9bef83ed 100644 --- a/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs +++ b/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs @@ -86,10 +86,7 @@ public void AddUserAgent(string productName) throw new NotImplementedException(); } - public HashSet UserAgents - { - get { throw new NotImplementedException(); } - } + public HashSet UserAgents { get; set; } public TClient CreateArmClient(Azure.Common.Authentication.Models.AzureContext context, Azure.Common.Authentication.Models.AzureEnvironment.Endpoint endpoint) where TClient : Microsoft.Rest.ServiceClient @@ -101,17 +98,5 @@ public TClient CreateCustomArmClient(params object[] parameters) where { throw new NotImplementedException(); } - - List IClientFactory.UserAgents - { - get - { - throw new NotImplementedException(); - } - set - { - throw new NotImplementedException(); - } - } } } diff --git a/src/ServiceManagement/Common/Commands.Common.Test/packages.config b/src/ServiceManagement/Common/Commands.Common.Test/packages.config index e5ed45944755..b830ae70e74a 100644 --- a/src/ServiceManagement/Common/Commands.Common.Test/packages.config +++ b/src/ServiceManagement/Common/Commands.Common.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index cbbf166e2992..4eed5d78b779 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config b/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config index 13d049026af9..9323e10a72ce 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Common/Commands.ServiceManagement.Common/Commands.ServiceManagement.Common.csproj b/src/ServiceManagement/Common/Commands.ServiceManagement.Common/Commands.ServiceManagement.Common.csproj index 86719a3c39ab..db131ec4464a 100644 --- a/src/ServiceManagement/Common/Commands.ServiceManagement.Common/Commands.ServiceManagement.Common.csproj +++ b/src/ServiceManagement/Common/Commands.ServiceManagement.Common/Commands.ServiceManagement.Common.csproj @@ -64,7 +64,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Common/Commands.ServiceManagement.Common/packages.config b/src/ServiceManagement/Common/Commands.ServiceManagement.Common/packages.config index 52173a5ec6e9..3ac1eb9411ac 100644 --- a/src/ServiceManagement/Common/Commands.ServiceManagement.Common/packages.config +++ b/src/ServiceManagement/Common/Commands.ServiceManagement.Common/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj index a303f0be3e07..a220ce2f92bc 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj @@ -66,7 +66,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config index 7ba48e61cbe9..81b410d0eb60 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj index 2e051b5a182b..bc62c8842e76 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj @@ -67,7 +67,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config index 76da1c5b860b..633b836338e2 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj index aef8f450b7df..5c130ca68609 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -64,7 +64,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config index 36dc7f85817e..773dca8a4361 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj index bb53e6a86b0c..acea516881bc 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj @@ -68,7 +68,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config index 24013abeb77e..788a323209cd 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj index 6f31adf6205e..fcff395edb39 100644 --- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj +++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj @@ -48,7 +48,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config index 3c22fbfd3c7a..50cc48086348 100644 --- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config +++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index 5a8dc207e7c7..38fd48ea4acd 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -55,7 +55,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config index 2a175f2f2cd9..7d75c6ff60ca 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj index 11294333d867..7a88fdf7b078 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj @@ -60,7 +60,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config index 9dbfe9f9cfbc..550212a07519 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj index 8f03622afb3e..33ca6a4fe533 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config index aebef710eb1f..099a12803c76 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj index d1f0b8e7f0c6..3f8e74d83140 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj @@ -48,7 +48,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config index 5da1afd55ffa..613553b9afb6 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj index 9e34a1c31225..1ab25031e4d3 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj +++ b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Network/Commands.Network.Test/packages.config b/src/ServiceManagement/Network/Commands.Network.Test/packages.config index efd685dd16b6..59d60cb1ef2e 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/packages.config +++ b/src/ServiceManagement/Network/Commands.Network.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj index 6790bd9cdb39..296d8536e233 100644 --- a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj +++ b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj @@ -56,7 +56,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Network/Commands.Network/packages.config b/src/ServiceManagement/Network/Commands.Network/packages.config index 1423f9ae03c1..9b78b5216d1f 100644 --- a/src/ServiceManagement/Network/Commands.Network/packages.config +++ b/src/ServiceManagement/Network/Commands.Network/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Profile/Commands.Profile/Account/AddAzureAccount.cs b/src/ServiceManagement/Profile/Commands.Profile/Account/AddAzureAccount.cs index d6b81d57ef72..ca8d08d1e60e 100644 --- a/src/ServiceManagement/Profile/Commands.Profile/Account/AddAzureAccount.cs +++ b/src/ServiceManagement/Profile/Commands.Profile/Account/AddAzureAccount.cs @@ -40,6 +40,7 @@ public class AddAzureAccount : SubscriptionCmdletBase [Parameter(ParameterSetName = "User", Mandatory = false, HelpMessage = "Optional tenant name or ID")] [Parameter(ParameterSetName = "ServicePrincipal", Mandatory = true, HelpMessage = "Tenant name or ID")] + [Alias("TenantId")] public string Tenant { get; set; } public AddAzureAccount() : base(true) diff --git a/src/ServiceManagement/Profile/Commands.Profile/Commands.Profile.csproj b/src/ServiceManagement/Profile/Commands.Profile/Commands.Profile.csproj index 2e8bf607e984..f096bd79dc7f 100644 --- a/src/ServiceManagement/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ServiceManagement/Profile/Commands.Profile/Commands.Profile.csproj @@ -54,7 +54,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Profile/Commands.Profile/Profile/NewAzureProfile.cs b/src/ServiceManagement/Profile/Commands.Profile/Profile/NewAzureProfile.cs index 890c9137d1bd..de1dbb193d82 100644 --- a/src/ServiceManagement/Profile/Commands.Profile/Profile/NewAzureProfile.cs +++ b/src/ServiceManagement/Profile/Commands.Profile/Profile/NewAzureProfile.cs @@ -82,6 +82,7 @@ public class NewAzureProfileCommand : AzureSMCmdlet [Parameter(Mandatory = false, Position = 2, ParameterSetName = CredentialsParameterSet)] [Parameter(Mandatory = true, Position = 2, ParameterSetName = ServicePrincipalParameterSet)] + [Alias("TenantId")] public string Tenant { get; set; } [Parameter(Mandatory = true, ParameterSetName = ServicePrincipalParameterSet)] diff --git a/src/ServiceManagement/Profile/Commands.Profile/packages.config b/src/ServiceManagement/Profile/Commands.Profile/packages.config index 8aa4cbc28eab..39137ba90c89 100644 --- a/src/ServiceManagement/Profile/Commands.Profile/packages.config +++ b/src/ServiceManagement/Profile/Commands.Profile/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index 369bd50f0303..6a3f9f9a55c2 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -39,7 +39,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config index e88129682e1f..04d7eb587056 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 90f7879db936..504ca9a9c4d5 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -54,7 +54,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config index f0bcfb4f964b..a1eae7f22284 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj index 492d64e7c6b5..8dbfa755f209 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj @@ -101,7 +101,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config index d8e06aa8947a..4f0f5515d48c 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index 5b0f561a826f..83f0d383e3a0 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -62,7 +62,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config index 2b31b2a92c9c..9fa07db3a838 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj index 5ed23f6ffa95..49c4c956995b 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config index 074fbe24e036..27360c7e5187 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj index 202a31adf76c..3e287e5545c9 100644 --- a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj +++ b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj @@ -57,7 +57,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands.Test/packages.config b/src/ServiceManagement/Services/Commands.Test/packages.config index 96ff38f40c11..fcd52569a45f 100644 --- a/src/ServiceManagement/Services/Commands.Test/packages.config +++ b/src/ServiceManagement/Services/Commands.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index f46759ea216c..b56a51cc6507 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 +++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.9.11' +ModuleVersion = '0.9.12' # ID used to uniquely identify this module GUID = 'D48CF693-4125-4D2D-8790-1514F44CE325' diff --git a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj index c8f645aa81e9..6d387def6be5 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj @@ -63,7 +63,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Services/Commands.Utilities/ShortcutStartup.ps1 b/src/ServiceManagement/Services/Commands.Utilities/ShortcutStartup.ps1 index 54b434483269..2f4a61103825 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/ShortcutStartup.ps1 +++ b/src/ServiceManagement/Services/Commands.Utilities/ShortcutStartup.ps1 @@ -22,10 +22,8 @@ $modulePath = Join-Path $(Split-Path (Get-ScriptDirectory)) "Azure.psd1" Import-Module $modulePath cd c:\ $welcomeMessage = @" -For a list of all Azure cmdlets type 'help azure'. +For a list of all Azure cmdlets type 'get-help azure'. For a list of Windows Azure Pack cmdlets type 'Get-Command *wapack*'. -For Node.js cmdlets type 'help node-dev'. -For PHP cmdlets type 'help php-dev'. "@ Write-Output $welcomeMessage @@ -34,5 +32,3 @@ if ($(Get-ExecutionPolicy) -eq "Restricted") { Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned -Force } - -$VerbosePreference="Continue" \ No newline at end of file diff --git a/src/ServiceManagement/Services/Commands.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Utilities/packages.config index c27cfc6e7c42..a20922324c81 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Utilities/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands/Commands.csproj b/src/ServiceManagement/Services/Commands/Commands.csproj index f59d463ecef0..04541d37caa5 100644 --- a/src/ServiceManagement/Services/Commands/Commands.csproj +++ b/src/ServiceManagement/Services/Commands/Commands.csproj @@ -61,7 +61,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Services/Commands/packages.config b/src/ServiceManagement/Services/Commands/packages.config index b7de1b91a1e4..6b11f5ca2415 100644 --- a/src/ServiceManagement/Services/Commands/packages.config +++ b/src/ServiceManagement/Services/Commands/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj index 940fca7a0632..a698c21a6c11 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj @@ -59,7 +59,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config index 41e01530539a..35d2fad381b7 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj b/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj index 364e3e45e439..af4205458b2d 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj @@ -58,7 +58,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config b/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config index 5fc1fc1cf68d..21d79dec1175 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj index c6a253447fa0..8534a8c7dfda 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj @@ -41,7 +41,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config index 11e64a191847..6cfffbe364a5 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj b/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj index 0a8847aa7d6d..56d58ef8be92 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj @@ -50,7 +50,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config b/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config index 30a6d245ee26..5aa191604e1c 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj index 6d76ed93a851..4ec56b36708c 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj @@ -46,7 +46,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config index 440b6c17550d..d0358d8b5473 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj index a8e08828d477..5a55dcd86676 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj @@ -52,7 +52,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config index 21d0d0d3e5e4..50d61c026a2a 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config @@ -2,7 +2,7 @@ - + diff --git a/tools/Installer/generate.ps1 b/tools/Installer/generate.ps1 index eef23adce6f5..bb0173e743e8 100644 --- a/tools/Installer/generate.ps1 +++ b/tools/Installer/generate.ps1 @@ -32,6 +32,8 @@ Write-Verbose "The output folder is set to $output" $serviceManagementPath = Join-Path $output "ServiceManagement\Azure" $resourceManagerPath = Join-Path $output "ResourceManager\AzureResourceManager" +Write-Verbose "Removing unneeded psd1 file for AzureResourceManager" +Remove-Item -Force $resourceManagerPath\AzureResourceManager.psd1 -ErrorAction SilentlyContinue Write-Verbose "Removing duplicated Resources folder" Remove-Item -Recurse -Force $serviceManagementPath\Compute\Resources\ -ErrorAction SilentlyContinue Remove-Item -Recurse -Force $serviceManagementPath\Sql\Resources\ -ErrorAction SilentlyContinue